Skip to content

Instantly share code, notes, and snippets.

@campoy
Created September 13, 2013 17:28
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 campoy/6553613 to your computer and use it in GitHub Desktop.
Save campoy/6553613 to your computer and use it in GitHub Desktop.
What do you think this will log?
var foo = 1;
func bar() {
if (!foo) {
var foo = 10;
}
console.log(foo);
}
bar();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment