Skip to content

Instantly share code, notes, and snippets.

@ionelh
Last active August 6, 2019 19:00
Show Gist options
  • Save ionelh/211d174d7d5947d42b8b5b2df4161f54 to your computer and use it in GitHub Desktop.
Save ionelh/211d174d7d5947d42b8b5b2df4161f54 to your computer and use it in GitHub Desktop.
Gist for medium article "How JavaScript Works"
function a() {
var foo = 'bar';
b();
}
function b() {
console.log(foo); // throws ReferenceError: foo is not defined
}
a();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment