Skip to content

Instantly share code, notes, and snippets.

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