Skip to content

Instantly share code, notes, and snippets.

@campoy
Created September 13, 2013 17:28
Show Gist options
  • Select an option

  • Save campoy/6553613 to your computer and use it in GitHub Desktop.

Select an option

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