Hacker News new | ask | show | jobs
by bruce343434 1782 days ago
>JS blocks statements

What are those?

1 comments

    { // Start of block statement.
      const foo = "a" + 2; // Only available inside block statement.
      console.log(foo); // "a2"
    } // End of block statement.
    console.log(foo); // Uncaught ReferenceError: foo is not defined