5 Ultimate Rules to master this keyword in JavaScript
Easy to understand 5 rules, that cover the behaviour of the "this" keyword in different contexts and helps you to master this keyword for any javascript interview.
Anuj Sharma
Last Updated Feb 21, 2026

"This" keyword is a very important concept to understand for any JavaScript Interview. 'this' keyword behaves differently in different contexts, so it is important to understand those contexts & how to know "this" value in each context.
5 Ultimate Rules to master 'this' keyword
Here are 5 examples that cover all different behaviour of the this keyword in JavaScript:
Rule 1: Global Context
In the global context (outside of any function), this refers to the global object, which is the window object in a browser environment.
Only var can be defined as part of the window (global object), let and const not attached to the global object (window) and remains undefined
⚠️ In 'use strict' mode this doesn't map to window object and remains undefined.
var name = 'Random';
let car = 'BMW';
const city = 'jaipur';
console.log(this === window); // true
console.log(window.name); // Random
console.log(this.name, this.car, this.city);
// Random undefined undefined
console.log(this.name, car, city);
// Random BMW jaipur
Rule 2: Function Context
Inside a function, the value of this depends on how the function is called. Let's go through the 2 cases to understand this rule.
Case 1: If the function is called as a method of an object, this refers to the object.
Case 2: In case function is called in global object, this refers to the global object.
let obj = {
name: 'Alice',
greet: function() {
console.log(`Hello, my name is ${this.name}`);
}
};
// Case 1: How function called - with object context
obj.greet(); // "Hello, my name is Alice"
// Case 2: How function called - with window context, like window.globalFunc
const globalFunc = obj.greet;
/*
globalFunc invokes greet() in global context and as described in step 1,
"this" maps to windows in global context,
Code tries to find the name in global context, but doesn't find so return undefined.
*/
globalFunc(); // "Hello, my name is"
Rule 3: Constructor Context
When a function is used as a constructor (i.e., called with the new keyword), this refers to the newly created object.
function Person(name) {
this.name = name;
}
let alice = new Person('Alice');
console.log(alice.name); // "Alice"
Rule 4: Explicit Binding using call, apply or bind
The value of this can be explicitly set using the call, apply, or bind methods.
function greet() {
console.log(`Hello, my name is ${this.name}.`);
}
let alice = {name: 'Alice'};
greet.call(alice); // "Hello, my name is Alice."
Rule 5: Arrow Functions
Arrow functions do not have their own "this" value. Instead, they inherit this from the enclosing lexical scope means parent lexical scope.
let obj = {
name: 'Alice',
greet: () => {
console.log('Hello, my name is', this.name);
}
};
obj.greet(); // "Hello, my name is undefined."
Further Reading
Comments
Be the first to share your thoughts!
No comments yet.
Start the conversation!
Share your expertise
Publish a blog or quick notes on topics you know well — your write-up could be the answer someone needs before their next frontend interview.
Build your portfolio
Help the community
Sharpen your skills
Earn goodies
Other Related Blogs
React Hook Rules: Why hooks declarations are not allowed inside functions
Frontendgeek
Last Updated Feb 6, 2026
A quick guide to explain an important react interview question, why React Hooks declarations are not allowed inside functions or any conditional blocks with code example.
setTimeout Polyfill in JavaScript - Detailed Explanation
Anuj Sharma
Last Updated Aug 3, 2025
Explore the implementation of setTimeout in JavaScript with a detailed explanation for every step. Understand all scenarios expected to implement the setTimeout polyfill.
Implementing a stopwatch using React - Frontend Machine Coding Question
Pallavi Gupta
Last Updated Feb 21, 2026
Concise explanation of stopwatch implementation using React, it involves the usage of useEffect hook for creating a stopwatch and tracking milliseconds.
Implement useClickOutside() custom Hook in React [Interview]
Anuj Sharma
Last Updated Dec 23, 2025
Understand the implementation of useClickOutside() custom hook in react and how it can be used to implement Modal like functionality.
