Skip to content

Instantly share code, notes, and snippets.

/.js Secret

Created November 19, 2017 21:53
Show Gist options
  • Save anonymous/ac933325399391b4d09746963a2056d3 to your computer and use it in GitHub Desktop.
Save anonymous/ac933325399391b4d09746963a2056d3 to your computer and use it in GitHub Desktop.
function() {
let foo = "bar";
console.log(foo); // valid, prints 'bar'
if (true) {
console.log(foo); // INVALID!
let foo = "baz";
console.log(foo); // valid, prints 'baz'
}
console.log(foo); // valid, prints 'bar'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment