Skip to content

Instantly share code, notes, and snippets.

@NovoManu
Created March 11, 2021 17:06
Show Gist options
  • Save NovoManu/d99f24ae06e5caf6278261dd44396cf7 to your computer and use it in GitHub Desktop.
Save NovoManu/d99f24ae06e5caf6278261dd44396cf7 to your computer and use it in GitHub Desktop.
const PI = 3.14 // immutable variable, could't be redeclared
const a = 5
let b = 6
let b = 7
{
let b = 8
}
console.log(b) // expected output: 7, not 8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment