JavaScript To wewnętrzna funkcja strzałki
const greet = () => {
console.log(this);
}
greet(); // Window {...}
SAMER SAEID
const greet = () => {
console.log(this);
}
greet(); // Window {...}