Skip to content

Instantly share code, notes, and snippets.

@dested
Created September 14, 2017 21:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dested/852c8c32d5cce59f7a7d468f86c38b44 to your computer and use it in GitHub Desktop.
Save dested/852c8c32d5cce59f7a7d468f86c38b44 to your computer and use it in GitHub Desktop.
let a = 1;
if (a == 1) {
let a = 2;
console.log(a);
}
console.log(a);
let b = 1;
if (a == 1) {
let b = b;
console.log(b);
}
console.log(b);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment