About Lesson
The this Keyword
The this keyword refers to the object from which it was called. In object methods, this refers to the object the method belongs to.
Example:
JavaScript
let person = {
name: "Manjeet",
greet: function() {
return "Hello, my name is " + this.name;
}
};
console.log(person.greet()); // Output: Hello, my name is Manjeet