SSantrainblog-santra.hashnode.dev·May 6 · 5 min readUnderstanding the this Keyword in JavaScriptIf there's one thing that trips up JavaScript developers at every level, it's this. It feels unpredictable, almost sneaky. But once you shift how you think about it, it clicks and it stays clicked. He00
DSDiwya sudarshan kaushikindskwebdev.hashnode.dev·Mar 26 · 3 min readUnderstanding the this Keyword in JavaScript1. What this Represents In plain English, this refers to an object. Which object? The one that is currently executing the function. It allows you to reuse functions across different objects, making yo00
SKsagar kembleinblog.sagarkemble.dev·Mar 15 · 7 min readThe magic of this, call ( ), apply ( ) and bind()Before starting let me tell you the this is really hard to understand in first glance and also you might get a question that the this is very weird in JS and its true , so don't worry just focus and r00
SNSrujanee Nayakinsrujanee-chaicode-webdev-blogs.hashnode.dev·Mar 15 · 3 min readA Deep Dive into this, Call(), Apply(), and Bind()What this Means in JavaScript In JavaScript, this refers to the object associated with the current function invocation. The key rule is, the value of this is determined by how a function is called, no00
DPDurgesh Pandeyinblog-heyvenom.hashnode.dev·Mar 15 · 7 min readThe Magic of this, call(), apply(), and bind() in JavaScript“Who Am I?” – The Story of this in JavaScript Imagine you are in a classroom. When you say “I am a student”, “I” refers to you. When your friend says “I am a student”, “I” refers to your friend. Th00
AKAnil Kambarinthe-magic-of-this-call-bind-apply-in-js.hashnode.dev·Mar 14 · 11 min readThe Magic of this, call(), apply(), and bind() in JavaScriptEver felt like JavaScript was playing a prank on you? One minute this refers to your object, and the next, it’s pointing at the entire browser window. Don't worry—you’re not alone. Mastering this and 00
RIRohit Ingaleinfunction-in-java-by-rohit.hashnode.dev·Mar 15 · 7 min readUnderstanding the apply() , Bind() and call() In JavaScript, functions are more than just blocks of code—they can be reused, borrowed, and even told who they should work for. That’s where call(), apply(), and bind() come in. These three methods l00
AKAnil Kambarindifference-of-js-function-declaration-vs-function-expression.hashnode.dev·Mar 14 · 11 min readThe Magic of this, call(), apply(), and bind() in JavaScriptEver felt like JavaScript was playing a prank on you? One minute this refers to your object, and the next, it’s pointing at the entire browser window. Don't worry—you’re not alone. Mastering this and 00
NKNAWAZISH KHANinnawazish.hashnode.dev·Mar 13 · 7 min readThe Magic of this, call(), apply(), and bind() in JavaScriptWhen I first started learning JavaScript, one word kept showing up again and again and honestly, it felt confusing: this. At first, it looked like a normal keyword. But the more examples I saw, the mo00