Scope in JavaScript: Desi Analogies to Understand Function, Block, and Lexical Scope

Scope in JavaScript is like the boundaries of a village, a family house, or a group of relatives. It determines where a variable can be accessed and who has the right to use it. To make things simple, let’s break it down using some desi (Indian) analogies.
1️⃣ Function Scope: The Wedding Feast (Shaadi ka Daawat 🎉🍛)
Imagine you're at a wedding feast (shaadi ka daawat). Only the people inside the wedding hall can enjoy the food. If someone outside the hall wants to eat, they won’t get access unless invited inside 🤷♂️.
🔹 In JavaScript terms:
Variables declared inside a function stay inside that function.
They cannot be accessed from outside the function.
Think of the function as the wedding hall—it has its exclusive scope.
Example:
jsCopyEditfunction shaadiKaDaawat() {
let biryani = "Delicious Hyderabadi Biryani";
console.log(biryani); // ✅ Can access inside the function
}
console.log(biryani); // ❌ Error: biryani is not defined outside
👉 Just like you can't eat biryani from outside the wedding hall, you can't access biryani
outside the function.
2️⃣ Block Scope: The Kitchen vs. Living Room (Maa Ka Kitchen 👩🍳🏠)
In a traditional Indian household, a mother (maa) has some special spices and ingredients that she keeps only inside the kitchen. If you’re in the living room, you won’t have access to those ingredients unless she brings them out.
🔹 In JavaScript terms:
Variables declared using
let
orconst
Inside curly braces{}
They are only available within that block.Once you step out of that block, those variables disappear, just like maa’s secret masalas in the kitchen.
Example:
jsCopyEdit{
let kitchenMasala = "Special Garam Masala";
console.log(kitchenMasala); // ✅ Available inside
}
console.log(kitchenMasala); // ❌ Error: Not accessible outside
👉 Just like you can’t take maa’s masala out of the kitchen, you can’t access block-scoped variables outside the block.
But if we use var
instead of let
It doesn’t respect block scope. It behaves like an elder uncle (bade chacha) who roams freely inside and outside the block.
jsCopyEdit{
var roamingUncle = "Bade Chacha";
}
console.log(roamingUncle); // ✅ Accessible outside
👉 var
is like Chacha Ji, who doesn’t stay in one place and can be seen everywhere in the function!
3️⃣ Lexical Scope: The Joint Family System 👪🏡
In an Indian joint family system, if a grandson (pota) wants money, he can ask his father (papa), who may ask his grandfather (dadaji) if needed. But if Dadaji has money, he won’t ask the grandson for it!
🔹 In JavaScript terms:
Inner functions can access variables from their parent functions (up the chain).
But parent functions cannot access variables from inside their children.
Example:
jsCopyEditfunction dadaJi() {
let familyWealth = "10 Crore Property";
function papa() {
let car = "Mercedes";
function pota() {
console.log(familyWealth); // ✅ Accessible (from dadaji)
console.log(car); // ✅ Accessible (from papa)
}
pota();
}
papa();
}
dadaJi();
👉 Just like pota can ask Dadaji for money, inner functions can access variables from outer functions.
However, if pota
has his own PlayStation, dadaji
won’t know about it:
jsCopyEditfunction dadaJi() {
function papa() {
function pota() {
let playStation = "PS5";
}
console.log(playStation); // ❌ Error: Not accessible outside pota
}
papa();
}
dadaJi();
👉 Just like dadaji doesn’t know about pota’s PlayStation, outer functions don’t have access to inner function variables.
Summing It Up!
Scope Type | Desi Example | Key Idea |
Function Scope | Wedding Feast (Shaadi ka Daawat) | Variables inside a function are private to that function. |
Block Scope | Maa Ka Kitchen (Kitchen vs. Living Room) | let and const are limited to the block they are declared in. |
Lexical Scope | Joint Family System (Dadaji → Papa → Pota) | Inner functions can access outer function variables, but not vice versa. |
Now, the next time someone asks you about scope, just tell them it’s all about shaadi, kitchen, and joint family dynamics! 🇮🇳
Subscribe to my newsletter
Read articles from Alok Singh directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
