Skip to content

Instantly share code, notes, and snippets.

@NV
Created June 11, 2009 20:01
Show Gist options
  • Save NV/128192 to your computer and use it in GitHub Desktop.
Save NV/128192 to your computer and use it in GitHub Desktop.
'foo bar'. Guess why?
var foo = function(bar) {
console.log("foo");
return bar;
}
(function(){
console.log("bar")
})();
// 'foo bar'
// Guess why?
var foo = function(bar) {
console.log("foo");
return bar;
};
(function(){
console.log("bar")
})();
// 'bar'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment