Если резюмировать , то после изучение основ React,а, где можно получить хороший опыт что бы можно было устраивается в разные компании, на нормальные должности?
Можно ли как то получить заказы на фрилансе, и на сколько их много?
const foo = {
bar: 'bar', // не важно свойство это, getter или setter
};
foo.bar
foo['bar']
import React from "react";
import ReactDOM from "react-dom";
const rootElement = document.getElementById("root");
const unmountApp = () => {
ReactDOM.unmountComponentAtNode(rootElement);
};
const App = () => (
<>
<div>App</div>
<button onClick={unmountApp}>Unmount App</button>
</>
);
ReactDOM.render(<App />, rootElement);
class Foo {
constructor() {
this.bar = this.bar.bind(this);
}
bar() {}
}
function Foo() {
this.bar = this.bar.bind(this);
}
Foo.prototype.bar = function () {};
"moduleResolution": "node",
handler = e => {
const { index } = e.target.dataset;
};
<div data-index={index} onClick={hanlder} />
Там и классНэйм вместо класс идёт.