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.

Comments

Leave a Comment

All fields are required. Your email address will not be published.