Skip to content

Instantly share code, notes, and snippets.

@lupomontero
Created March 30, 2012 01:34
Show Gist options
  • Save lupomontero/2245589 to your computer and use it in GitHub Desktop.
Save lupomontero/2245589 to your computer and use it in GitHub Desktop.
var makeFunction = function () {
var foo = true;
return function () {
return foo;
};
};
var myFunc = makeFunction();
myFunc(); // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment