Skip to content

Instantly share code, notes, and snippets.

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