Skip to content

Instantly share code, notes, and snippets.

@praveen-me
Created September 6, 2018 05:03
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/b52804abada6bc1eed2931f3c8b5bd00 to your computer and use it in GitHub Desktop.
Save praveen-me/b52804abada6bc1eed2931f3c8b5bd00 to your computer and use it in GitHub Desktop.
Scopes in JavaScript
var a = 'global';
function iAmLocal() {
a = 'is I am local';
}
iAmLocal();
a; //Think and let's give it a moment ??
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment