DEV Community

Cover image for What The Hack is "This" Keyword in JavaScript.🤔
Mahendra Bishnoi
Mahendra Bishnoi

Posted on

What The Hack is "This" Keyword in JavaScript.🤔

What is this?

The JavaScript this keyword refers to the object it belongs to.

It has different values depending on where it is used:

In a method, this refers to the owner object.
Alone, this refers to the global object.
In a function, this refers to the global object.
In a function, in strict mode, this is undefined.
In an event, this refers to the element that received the event.
Methods like call(), and apply() can refer this to any object.


this in a Method
In an object method, this refers to the "owner" of the method.

In the example on the top of this page, this refers to the person object.

The person object is the owner of the fullName method.
EXAMPLE:

fullName : function() {
  return this.firstName + " " + this.lastName;
}
Enter fullscreen mode Exit fullscreen mode

this Alone
When used alone, the owner is the Global object, so this refers to the Global object.

In a browser window the Global object is [object Window]:

EXAMPLE:

let x = this;
Enter fullscreen mode Exit fullscreen mode

In strict mode, when used alone, this also refers to the Global object [object Window]:

EXAMPLE:

"use strict";
let x = this;
Enter fullscreen mode Exit fullscreen mode

this in a Function (Default)
In a JavaScript function, the owner of the function is the default binding for this.

So, in a function, this refers to the Global object [object Window].

EXAMPLE:

function myFunction() {
  return this;
}
Enter fullscreen mode Exit fullscreen mode

this in a Function (Strict)
JavaScript strict mode does not allow default binding.

So, when used in a function, in strict mode, this is undefined.

EXAMPLE:

"use strict";
function myFunction() {
  return this;
}
Enter fullscreen mode Exit fullscreen mode

this in Event Handlers
In HTML event handlers, this refers to the HTML element that received the event:

EXAMPLE:

<button onclick="this.style.display='none'">
  Click to Remove Me!
</button>
Enter fullscreen mode Exit fullscreen mode

Object Method Binding
In these examples, this is the person object (The person object is the "owner" of the function):

EXAMPLE:

const person = {
  firstName  : "John",
  lastName   : "Doe",
  id         : 5566,
  myFunction : function() {
    return this;
  }
};
Enter fullscreen mode Exit fullscreen mode

In other words: this.firstName means the firstName property of this (person) object.

Explicit Function Binding
The call() and apply() methods are predefined JavaScript methods.

They can both be used to call an object method with another object as argument.

You can read more about call() and apply() later in this tutorial.

In the example below, when calling person1.fullName with person2 as argument, this will refer to person2, even if it is a method of person1:

EXAMPLE:

const person1 = {
  fullName: function() {
    return this.firstName + " " + this.lastName;
  }
}
const person2 = {
  firstName:"John",
  lastName: "Doe",
}
person1.fullName.call(person2);  // Will return "John Doe"
Enter fullscreen mode Exit fullscreen mode

Oldest comments (0)