/
Why let is better than var
Why let is better than var
So the issue with var is that it is has some weird scoping rules - it’s scoped according the function it is defined in or if outside of a function to the window object.
The let word allows one to define variables in way which is more typical to other languages where the scope of the variable is block scoped.
{
var Value1 = 10;
let Value2 = 20;
}
console.log(Value1); // this will work
console.log(Value2); // this will fail
There is no need to use var anymore in Javascript.
, multiple selections available,
Related content
How const can be helpful in modern Javascript
How const can be helpful in modern Javascript
More like this
Javascript Variables - Covering the core types
Javascript Variables - Covering the core types
More like this
The equality operator in Javascript == does implicit type conversions
The equality operator in Javascript == does implicit type conversions
Read with this
Javascript is a dynamic language
Javascript is a dynamic language
More like this
Javascript Object
Javascript Object
Read with this
Javascript Namespace Conventions
Javascript Namespace Conventions
More like this