
Introduction Imagine you're at a party and someone yells, "Hey you!" – but who are they...
Imagine you're at a party and someone yells, "Hey you!" – but who are they talking to? It depends entirely on who they’re facing and pointing when they shout. That's exactly how JavaScript's this keyword works. It doesn't have a fixed identity; instead, it dynamically points to whoever called.
Mastering this is crucial for any JavaScript developer because it determines what data your functions can access. Get it wrong, and your code breaks mysteriously. Get it right, and you unlock the full power of object-oriented JavaScript.
Let's demystify this step by step and in every context.
this Actually Represent?In JavaScript, this refers to the object that is currently executing the code. Think of it as "the caller of the function". Its value isn't fixed at write time – it's determined dynamically based on how and where the function gets called.
Key principle: this always depends on:

this in Global ContextIn the global scope, this points to the global object:
// Browser environment
console.log(this); // window object
// Node.js environment
console.log(this); // {} (empty object)
// Even typeof works consistently
console.log(typeof this); // "object" (both environments)
Global this = environment's global object.
this Inside Objects (Method Calls)When a function is called as an object method, this refers to that object only:
const person = {
name: "Ritam",
greet: function() {
console.log(`Hello, I'm ${this.name}!`);
}
};
person.greet(); // "Hello, I'm Ritam!"
For obj.method() : this = obj

this Inside Regular FunctionsThis is where this gets tricky! Regular functions look at their calling context:
// Non-strict mode
function regularFunc() {
console.log(this);
}
regularFunc();
// Browser: window object
// Node.js: global object (or empty object)
// Strict mode
"use strict";
function strictFunc() {
console.log(this);
}
strictFunc(); // undefined (both environments)
thisArrow functions inherit this from their surrounding scope:
// Node.js environment
const arrowTest = () => console.log(this);
arrowTest(); // {} (empty object)
// Browser environment
arrowTest(); // window object
Regular nested functions lose the outer this:
const calculator = {
value: 100,
calculate: function() {
// Regular nested function LOSES outer this
function innerFunc() {
console.log(this.value); // undefined!
}
innerFunc();
}
};
calculator.calculate(); // undefined
Solution: Use arrow functions inside object methods:
const calculatorFixed = {
value: 100,
calculate: function() {
// Arrow function INHERITS outer this
const innerFunc = () => {
console.log(this.value); // 100
};
innerFunc();
}
};
calculatorFixed.calculate(); // Works perfectly!
thisRemember our party analogy? Here's the magic:
const user = {
name: "Ritam",
sayHello: function() {
console.log(`Hi from ${this.name}`);
}
};
// Method call --> this = user object
user.sayHello(); // "Hi from Ritam"
// Function call --> this = global/undefined (Often called as Detached Methods)
const hello = user.sayHello;
// hello only have the reference of the
// sayHello but don't have any idea whether
// it come from an object or not. `this` becomes unaccessible.
hello(); // "Hi from undefined"
| Context | Browser (non-strict) | Node.js (non-strict) | Strict Mode |
|---|---|---|---|
| Global | window | {} | undefined |
| Object Method | Object itself | Object itself | Object itself |
| Regular Function | window | global/ {} | undefined |
| Arrow Function | Lexical this | Lexical this | Lexical this |
this = whoever called the functionobj.method() always worksthis in regular standalone functions unless you know the contextconst self = this pattern for older codebasesMastering this transforms you from a JavaScript user to a JavaScript architect. Next time you see that sneaky keyword, you'll know exactly who it's pointing to!
gemmaI ported the whole Gemma-4 family — E2B, E4B, 12B, 31B, and the 26B-A4B MoE — to run on...
communityHey DEV, I'm Tobore. Let's actually connect. I've been on here for a while now, mostly writing and...
ai(yep, kinda clickbait, just for the funsies 😊) At the beginning of the year, I relaunched my...
aiMy laptop was sitting idle with the fan at full tilt. Nothing was running that I knew of. The culprit...
githubactionsI Built a Thing! TL;DR — Google Gemini-based Pull Request reviews and Issue Triaging for...
aiI've been hearing the word "harness" thrown around a lot lately. I assumed it just meant "the IDE" or...
Workflows from the Neura Market marketplace related to this CoPilot resource