Skip to content

Instantly share code, notes, and snippets.

@weskerfoot
Created September 25, 2013 19:59
Show Gist options
  • Save weskerfoot/6705180 to your computer and use it in GitHub Desktop.
Save weskerfoot/6705180 to your computer and use it in GitHub Desktop.
function foo() {
var a = 1;
function bar() {
a = 2;
console.log(a);
}
bar();
console.log(a);
}
foo();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment