Understanding the this Keyword in JavaScript
Mar 19 Β· 8 min read Β· π§ Think of this like:
π βWho is calling me?β
Not who created the function.Not where itβs written.π Only: who is calling it right now
π 1. this in Global Context
Example:
console.log(this);
What i