Skip to content

Instantly share code, notes, and snippets.

@peterbsmyth
Last active September 27, 2015 17:10
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 peterbsmyth/a99f59842caef5011027 to your computer and use it in GitHub Desktop.
Save peterbsmyth/a99f59842caef5011027 to your computer and use it in GitHub Desktop.
Scope Chain
function b(){
console.log(myVar);
}
function a(){
var myVar = 2;
console.log(myVar);
b();
}
var myVar = 1;
a();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment