96 Flashcards

(2 cards)

1
Q

The this Keyword

A

special variable that is created for every execution context

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

this - Different ways of calling a function
* Method: this = ?
* Simple function call: this = ?
* Arrow functions: this = ?
* Event listener: this = ?

A
  • Method: this = [Object that is calling the method]
  • Simple function call: this = undefined
  • Arrow functions: this = [this of surrounding function]
  • Event listener: this = [DOM element that the handler is attached to]
How well did you know this?
1
Not at all
2
3
4
5
Perfectly