Skip to content

Instantly share code, notes, and snippets.

@brianleroux
Created February 23, 2010 19:23
Show Gist options
  • Save brianleroux/312583 to your computer and use it in GitHub Desktop.
Save brianleroux/312583 to your computer and use it in GitHub Desktop.
var a = 8;
var someFunc = function(){
document.write(a);
var a = 8;
};
someFunc(); // writes a as undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment