1
Dr. Navneet Kaur, Lovely
Professional University
Outline
var, let, const
2
Dr. Navneet Kaur, Lovely
Professional University
var, let, const
var let const
Variables declared Variables declared Variables declared
scope with var are in the as let are in the block as const are in the
function scope. scope. block scope.
Initializatio Not necessary Not necessary Necessary
n
Re- Allowed Not allowed Not allowed
declaration
Reassignm
Allowed Allowed Not allowed
ent
Hoisting Allowed Not allowed Not allowed
3
Dr. Navneet Kaur, Lovely Profession
al University
Thank you