Skip to content

Instantly share code, notes, and snippets.

@josescasanova
Created February 7, 2016 01:31
Show Gist options
  • Save josescasanova/aa2aa0b7db857d5f194b to your computer and use it in GitHub Desktop.
Save josescasanova/aa2aa0b7db857d5f194b to your computer and use it in GitHub Desktop.
function setGlobal() {
a = 42;
}
function setLocal() {
var b = 23;
}
setGlobal();
alert(a); // 42
setLocal();
alert(b); // ReferenceError: b is not defined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment