Skip to content

Instantly share code, notes, and snippets.

Created October 9, 2011 23:34
Show Gist options
  • Save anonymous/1274367 to your computer and use it in GitHub Desktop.
Save anonymous/1274367 to your computer and use it in GitHub Desktop.
josh99 - pastebin.com/2fbiMMxM
var age, foo;
age = 99;
foo = function() {
return age = 0;
};
foo();
console.log(age); # => 0
------------------------
var age, foo;
foo = function() {
var age;
return age = 0;
};
age = 99;
foo();
console.log(age); # => 99
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment