Skip to content

Instantly share code, notes, and snippets.

@tmcw
Created April 24, 2013 13:40
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 tmcw/5452191 to your computer and use it in GitHub Desktop.
Save tmcw/5452191 to your computer and use it in GitHub Desktop.
function scopedVar() {
var myScopedVar = 4;
}
function unscopedVar() {
myUnscopedVar = 6;
}
scopedVar();
myUnscopedVar;
unscopedVar();
myScopedVar;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment