VertitimeX Technologies

Javascript Let Statement.

The let declaration declares re-assignable, block-scoped local variables, optionally initializing each to a value.
let x = 1;

if (x === 1) {
  let x = 2;

  console.log(x);
  // Expected output: 2
}