Skip to content

Instantly share code, notes, and snippets.

@bmavity
Created February 16, 2011 23:57
Show Gist options
  • Save bmavity/830603 to your computer and use it in GitHub Desktop.
Save bmavity/830603 to your computer and use it in GitHub Desktop.
var outsideFunctionWithVar = 2;
(function() {
insideFunctionWithoutVar = 'hippo';
var insideFunctionWithVar = 'not defined outside of function';
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment