Skip to content

Instantly share code, notes, and snippets.

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 molayodecker/8b76b4dbd7812140bd98d98e39237705 to your computer and use it in GitHub Desktop.
Save molayodecker/8b76b4dbd7812140bd98d98e39237705 to your computer and use it in GitHub Desktop.
Scopes4
var a = 10;
function outer(){
var b = a;
console.log(b);
function inner(){
var b = 20;
var c = b;
console.log(c);
}
inner();
}
outer();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment