The Let Keyword
The let
keyword is a way to assign a value to a mutable variable that respects local scoping.
var x = 10;
// Here x is 10
{
let x = 2;
// Here x is 2
}
// Here x is 10
Backlinks
The let
keyword is a way to assign a value to a mutable variable that respects local scoping.
var x = 10;
// Here x is 10
{
let x = 2;
// Here x is 2
}
// Here x is 10