Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

let var

let x = 1;

console.log(x);      //

if (true) {
    console.log(x);  //
    var x = 2;       // SyntaxError: Identifier 'x' has already been declared
    console.log(x);  //
}
console.log(x);      //