Skip to content

Instantly share code, notes, and snippets.

@iam-peekay
Last active April 29, 2016 04:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iam-peekay/a113932c680205307f77fbb845e69dc2 to your computer and use it in GitHub Desktop.
Save iam-peekay/a113932c680205307f77fbb845e69dc2 to your computer and use it in GitHub Desktop.
var x = 10;
function foo() {
var y = 20; // free variable
function bar() {
var z = 15; // free variable
return x + y + z;
}
return bar;
}
var test = foo();
test(); // 45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment