Tag javascript this keyword in arrow function

JavaScript this Keyword

Example const person = {   firstName: “John”,   lastName : “Doe”,   id       : 5566,   fullName : function() {     return this.firstName + ” ” + this.lastName;   } }; What is this? In JavaScript, the this keyword refers to an…