Skip to content

Instantly share code, notes, and snippets.

@ikushaldave
Last active August 17, 2020 15:53
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 ikushaldave/eaa11b252081e975d63a10cc8cb74f1d to your computer and use it in GitHub Desktop.
Save ikushaldave/eaa11b252081e975d63a10cc8cb74f1d to your computer and use it in GitHub Desktop.
var user = "global";
function scope() {
var user = "function scope"
console.log(user); // "function scope"
}
scope();
console.log(user); // "global"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment