Skip to content

Instantly share code, notes, and snippets.

@codemilli
Last active April 6, 2016 18:53
Show Gist options
  • Save codemilli/41d2cc0b9edb92791746b455f0fb0461 to your computer and use it in GitHub Desktop.
Save codemilli/41d2cc0b9edb92791746b455f0fb0461 to your computer and use it in GitHub Desktop.
if (true) {
var a = 'hacker';
let b = 'moon';
console.log('a => ', a); // hacker
console.log('b => ', b); // moon
}
console.log('a => ', a); // hacker
console.log('b => ', b); // b is not defined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment