π Day 4: JavaScript Hoistingβ-βUnderstanding var, let & const Hoisting in DepthΒ π


Welcome to Day 4 of our JavaScript Basics to Advanced series! π Today, weβre diving deep into JavaScript Hoistingβββone of the most commonly misunderstood concepts.
By the end of this lesson, youβll fully understand how JavaScript treats var
, let
, and const
during execution.
Letβs break it down step by step! π
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
1οΈβ£ What is Hoisting in JavaScript? π
Hoisting is JavaScriptβs default behavior of moving variable and function declarations to the top of their scope before execution.
β In simple terms, you can use a function or variable before it is declared!
However, hoisting works differently for var
, let
, const
, and functions. Letβs explore! π
***************************************************************************
2οΈβ£ How Hoisting Works in JavaScript π€
When JavaScript executes a script, it processes two phases:
Creation PhaseβββJavaScript scans the code and allocates memory for variables and functions before execution starts.
Execution PhaseβββJavaScript runs the code line by line.
During the creation phase, variable declarations (not initializations) are moved to the top of their scope. But they behave differently based on whether they are declared with var
, let
, or const
.
***************************************************************************
3οΈβ£ Hoisting with var
π
Variables declared with var
are hoisted to the top of their scope, but they are initialized with undefined
.
Example:
console.log(myVar); // undefined (hoisted but not initialized)
var myVar = 10;
console.log(myVar); // 10
Why does this happen? π€·ββοΈ
The above code is interpreted by JavaScript like this:
var myVar; // Hoisted to the top (declaration only)
console.log(myVar); // undefined (since it's declared but not assigned yet)
myVar = 10; // Now it gets assigned a value
console.log(myVar); // 10
Key Takeaways: β
var
declarations are hoisted and initialized with undefined
.
β This can lead to unexpected behavior if you try to access the variable before assigning it a value.
***************************************************************************
4οΈβ£ Hoisting with let
& const
β‘
Unlike var
, variables declared with let
and const
are hoisted, but they are NOT initialized!
Example:
console.log(myLet); // β ReferenceError: Cannot access 'myLet' before initialization
let myLet = 20;
console.log(myLet); // β
20
Why does this happen? π€
let
andconst
variables are hoisted to the top but remain in the "temporal dead zone" (TDZ) until they are assigned a value.TDZ is the time between when the variable is hoisted and when it gets assigned a value.
Key Takeaways: β
let
& const
are hoisted, but NOT initialized (stay in TDZ).
β
Accessing them before declaration causes a ReferenceError. β
const
must be initialized during declaration.
***************************************************************************
5οΈβ£ Function Hoisting π
π’ Function Declarations (Hoisted)
Functions declared using function
keyword are fully hoisted, meaning you can call them before defining them.
sayHello(); // β
Works fine!
function sayHello() {
console.log("Hello, World!");
}
Why? JavaScript moves the entire function definition to the top.
π΄ Function Expressions (Not Hoisted)
If a function is assigned to a variable (let
, const
, or var
), it behaves differently.
sayHi(); // β TypeError: sayHi is not a function
var sayHi = function() {
console.log("Hi!");
};
Why?
sayHi
is hoisted asundefined
, just likevar
.When we try to call
undefined
as a function, it fails.
β Function expressions are NOT hoisted like function declarations.
**************************************************************************
6οΈβ£ SummaryβββHoisting in a Nutshell π
Hosting Differences between βvarβ, βletβ, βconstβ and βfunctionβ
Key Takeaways:
β
var
is hoisted but initialized as undefined
.
β
let
& const
are hoisted but not initialized (TDZ applies).
β
Function declarations are fully hoisted.
β
Function expressions are NOT hoisted.
**************************************************************************
π Final Thoughts
Understanding hoisting helps you write cleaner, bug-free JavaScript. Avoid using var
, and prefer let
or const
for better predictability!
π¬ Which part of hoisting confused you the most before? Let me know in the comments! π
π Read my previous JavaScript blogs here: π JavaScript Series on Hashnode and JavaScript Series on Medium
Subscribe to my newsletter
Read articles from Lokesh Prajapati directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by

Lokesh Prajapati
Lokesh Prajapati
π JavaScript | React | Shopify Developer | Tech Blogger Hi, Iβm Lokesh Prajapati, a passionate web developer and content creator. I love simplifying JavaScript, React, and Shopify development through easy-to-understand tutorials and real-world examples. Iβm currently running a JavaScript Basics to Advanced series on Medium & Hashnode, helping developers of all levels enhance their coding skills. My goal is to make programming more accessible and practical for everyone. Follow me for daily coding tips, tricks, and insights! Letβs learn and grow together. π‘π #JavaScript #React #Shopify #WebDevelopment #Coding #TechBlogger #LearnToCode