This
“this” Keyword in Javascript
- In a methods,
thisrefers to the owner object. - Alone,
thisrefers to the global object. - In a function,
thisrefers to the global object. - In a function, in strict mode,
thisisundefined. - In an event,
thisrefers to the element that received the event. - Methods like call(), and apply() can refer
thisto any object.
Children