Skip to content

Instantly share code, notes, and snippets.

@mklabs
Created October 13, 2010 13:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mklabs/623981 to your computer and use it in GitHub Desktop.
Save mklabs/623981 to your computer and use it in GitHub Desktop.
// 2: what is the faulty logic in the following code?
var foo = 'hello';
(function() {
var foo = foo || 'world';
console.log(foo);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment