Skip to content

Instantly share code, notes, and snippets.

@thebopshoobop
Created July 31, 2017 02:55
Show Gist options
  • Save thebopshoobop/c4c1d3b0931947d10f113114e03b6aee to your computer and use it in GitHub Desktop.
Save thebopshoobop/c4c1d3b0931947d10f113114e03b6aee to your computer and use it in GitHub Desktop.
// This version throws a ReferenceError
function foo() {
console.log(x);
}
// These versions are equivalent and both log undefined
function bar() {
console.log(x);
var x = 'ZORG';
}
function baz() {
var x;
console.log(x)
x = 'ZORG';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment