Skip to content

Instantly share code, notes, and snippets.

@hughfdjackson
Forked from anonymous/gist:1274367
Created October 9, 2011 23:46
Show Gist options
  • Save hughfdjackson/1274380 to your computer and use it in GitHub Desktop.
Save hughfdjackson/1274380 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