* Variables defined with let cannot be redeclared.
* You cannot accidentally redeclare a variable.
let x = "John Doe";
let x = 0;
// SyntaxError: 'x' has already been declared
allows you to declare variables that are limited to the scope of a block statement