Skip to content

Instantly share code, notes, and snippets.

@getify
Created July 20, 2010 13:11
Show Gist options
  • Save getify/482939 to your computer and use it in GitHub Desktop.
Save getify/482939 to your computer and use it in GitHub Desktop.
(function blah() {
alert(blah); // works!
(function() { alert(blah); })(); // fails :(
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment