Skip to main content

Let, Const, Var in Javascript

Let and Const have block scope ,  Var has function scope. 

We cant reassign new values to the variables created using “const”
Another rule is that unlike var, a let variable cannot be re- declared within its scope.