Skip to content

Instantly share code, notes, and snippets.

@gordonmzhu
Created April 14, 2016 18:55
Show Gist options
  • Save gordonmzhu/8ad95a6719b2e5275396d334d1a2dee9 to your computer and use it in GitHub Desktop.
Save gordonmzhu/8ad95a6719b2e5275396d334d1a2dee9 to your computer and use it in GitHub Desktop.
function outer(usedInsideInner) {
return function() {
console.log(usedInsideInner);
}
}
var inner = outer(5);
inner(); // should log 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment