The JavaScript this Keyword
Example: <!DOCTYPE html> <html> <body> <h1>The JavaScript <i>this</i> Keyword</h1> <p>In this example, <b>this</b> refers to the <b>person</b> object.</p> <p>Because <b>fullName</b> is a method of the person object.</p> <p id=”demo”></p> <script> // Create an object: const person = { firstName: “John”, lastName: “Doe”, id: 5566, fullName : function() { return this.firstName + ” ” +… Read More »