Skip to content

Instantly share code, notes, and snippets.

@mhansen
Created August 25, 2009 05:03
Show Gist options
  • Save mhansen/174480 to your computer and use it in GitHub Desktop.
Save mhansen/174480 to your computer and use it in GitHub Desktop.
function outerFunction(id) {
var outerFunctionVariable = id;
return function innerFunction() {
return outerFunctionVariable;
}
}
var a = outerFunction(5);
a() //returns 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment