JavaScript Tutorial in Hindi #3 | Let, Var, and Const Explained with Examples (2025)

What are var, let, and const?

FeaturevarLetConst
ScopeFunction-scopedBlock-ScopeBlock-Scope
Can reassign?YesYesNo
Can redeclare?YesNoNo
Hoisted?Hoisted (but undefined)Hoisted (not undefined)Hoisted (not undefined)
Recommended?NoYesYes