Skip to content

Instantly share code, notes, and snippets.

@praveen-me
Created September 6, 2018 05:04
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 praveen-me/d963cd28f6b03fc78f29053eb3f7c520 to your computer and use it in GitHub Desktop.
Save praveen-me/d963cd28f6b03fc78f29053eb3f7c520 to your computer and use it in GitHub Desktop.
Scopes in JavaScript
var a = 'global';
function iAMLocal() {
var b = 'local';
}
a; //'global'
b; //??
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment