Skip to content

Instantly share code, notes, and snippets.

@biirus
Last active March 10, 2017 07:30
Show Gist options
  • Save biirus/0df8cc1cd1a4a5b9a0775528a04d5196 to your computer and use it in GitHub Desktop.
Save biirus/0df8cc1cd1a4a5b9a0775528a04d5196 to your computer and use it in GitHub Desktop.
Q2 #tags: interview
var x = 1;
function a () {
if (x) {
var x = 2;
}
return x;
}
console.log(a());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment