Difference table of var, let and const keyword is created, to easily understand its use.

varletconst
InitializationNoNoYes
RedeclarationYesNoNo
ReassignmentYesYesNo
HoistingYesNoNo
ScopeFunction/GlobalBlockBlock
Introduced in1995 (Since javascript invented)-2015
(still in use but not recommended)
ES 2015 (ES16)
2015 – current
ES 2015 (ES16)
2015 – current