JavaScript this Keyword
this keyword in JavaScript is used to refer to a specific object. Now the point comes to which object this keyword will refer to. We can have below 4 scenarios for calling this keyword. Global Scope Object’s Method call() or apply() method bind() method this – Global Scope: this keyword will point to the window … Read more