Home » JavaScript This Keyword

JavaScript This Keyword

JavaScript This Keyword

JavaScript This Keyword refers to an object that is executing in the current code. Like the ‘window’ object executes in the global scope. Similarly, every function while executing has a reference to its current execution context, which can be referenced by ‘this’.

In most cases, the value of ‘this’ in JavaScript depends on how a function is called, potentially varying each time. Explore the intricacies of the ‘this’ keyword in JavaScript.

The value of ‘this’ also depends on whether we are working in the strict mode or not.

In Normal/Sloppy Mode

In the global execution context, ‘this’ refers to the global object as the function call is bound to the window object by default.

Inside a function, if the value of ‘this’ is not set by the call, then it will also default to ‘window’ object. Eg.,

function abc() {
console.log(this);
}
abc(); // Prints Window object
JavaScript

When an object has a function defined as a property to it, its ‘this’ refers to the object the method is called on. Eg.,

var obj = {
a: 25,
abc: function() {
return this.a;
}
}
console.log(obj.abc()); // Prints - 25
JavaScript

The result of the output won’t change even if the function is attached to the object afterwards the creation of the object. Let’s say that the object defined above has a nested object as –

obj.b = { bcd: function() { console.log(this.a); }, a: 35 };
JavaScript

Then, inside the nested object – ‘b’, ‘this’ will refer to the object ‘b’. So, if we do something like this –

console.log(obj.b.bcd()); // Prints - 35
JavaScript

Only the most immediate reference to the function call matters.

In Strict Mode

Strict mode puts a restriction on value of this, it will be undefined if in global context function is not bound to any object. Whereas in sloppy mode it was set to ‘window’ object.

Inside a function, if the value of ‘this’ is not set by the call, then it will be ‘undefined’. This happens because the function is called directly and not as a method( eg. window.abc() ). Here is an example below – Eg.,

function abc() {
console.log(this);
}
abc(); // Prints – undefined
window.abc() // Prints window object
JavaScript

The function of an object behaves in same way whether in the strict mode and or not.

Conclusion

In JavaScript, this keyword is a powerful feature that provides a reference to the object that is currently executing the code or the current execution context. Its value is dynamic and determined by how the function is called, and it can vary each time the function is called. Understanding the behavior of this is crucial for effective JavaScript programming, as it affects the context within which functions execute and how they access object properties.

In non-strict (sloppy) mode, this defaults to the global object (window in browsers) in the global execution context and within functions where its value isn’t explicitly set. When a function is a method of an object, this refers to the object the method is called on, allowing for object methods to access and manipulate the object’s properties.

In strict mode, JavaScript enforces a stricter set of rules on the value of this. If not bound to an object, this will be undefined in functions, even in the global context. This change emphasizes the importance of calling context and helps catch errors where this might not be what a programmer expects.

Frequently Asked Questions

Q1. How do I determine the value of this in a function?

Ans: The value of this in a function depends on how the function is called. If the function is called as a method of an object, this refers to that object. If the function is called in the global context, this refers to the global object (window in browsers) in non-strict mode, and undefined in strict mode.


Q2. Can I change the value of this inside a function?

Ans: Yes, you can change the context in which a function is called using methods like call(), apply(), and bind(), which allow you to explicitly set the value of this.


Q3. Does this behave the same way in arrow functions?

Ans: No, arrow functions do not have their own this context. Instead, they inherit this from the surrounding lexical context. This means that inside an arrow function, this refers to the same object as in the parent scope.


Q4. What happens to this in event handlers?

Ans: In event handlers, this typically refers to the element that received the event, although this behavior can vary depending on how the event handler is attached and the use of arrow functions.


Q5. Why is understanding this important in JavaScript?

Ans: Understanding this is crucial because it affects how functions are executed and how they interact with object properties. Proper use of this can lead to more effective and error-free code, especially in object-oriented programming and when manipulating the DOM in web development.