Skip to content

Instantly share code, notes, and snippets.

@pcsontos
Last active January 22, 2019 21:19
Show Gist options
  • Save pcsontos/426631815e23a725e1dc80f50afe5a6e to your computer and use it in GitHub Desktop.
Save pcsontos/426631815e23a725e1dc80f50afe5a6e to your computer and use it in GitHub Desktop.
Listing 1-4. A “Functional Scope” Example
function foo() {
var a = 1;
function bar() {
var b = 2;
function baz() {
console.log(a, b);
}
}
}
function bing() {
var a = 1;
function boo() {
console.log(a);
}
}
foo();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment