Successfully added
JavaScript
by Patrik
Definition of let
The let
keyword was introduced in ES6 (2015).
- Variables defined with
let
cannot be Redeclared. - Variables defined with
let
must be Declared before use. - Variables defined with
let
have Block Scope.
Referenced in:
Comments