Skip to content

Instantly share code, notes, and snippets.

@iam-peekay
Last active April 29, 2016 04:39
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/f03ba0ff7499d78e44fd262be2ff4c61 to your computer and use it in GitHub Desktop.
Save iam-peekay/f03ba0ff7499d78e44fd262be2ff4c61 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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment