Похожие чаты

// this -> Window element.addEventListener("change", () => console.log(this)) // this -> Window element.addEventListener("change",

() => {console.log(this)})
// this -> element
element.addEventListener("change", function() {console.log(this)})
Why arrow function behaves differently ?

2 ответов

16 просмотров

Because arrow functions don't create a scope for "this", instead it inherits it from its parent

Похожие вопросы

Обсуждают сегодня

Карта сайта