this
this is a object reference to its parent object.
Ex 1:
console.log(this) // window
this === window // true
function a() {
console.log(this) // window
this === window // true
}
a(); // same as window.a();
Ex 2:
const greet = {
welcome: function() {
console.log(this) // greet
this === window // false
}
};
greet.welcome();Last updated