The JavaScript this keyword indicates to the object it belongs to. Depending on whether it is used, it has several values. Such,
- This keyword indicates to the owner object when it is used in a method.
- This keyword indicates the global object when it is used alone or in a function.
- ‘this’ is undefined when it is used in a function and in a strict mode.
Top comments (0)