Skip to content

Instantly share code, notes, and snippets.

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