Skip to content

Instantly share code, notes, and snippets.

@juan-cortes
Last active June 28, 2018 00:14
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 juan-cortes/e81080297a0b5f013844e6542d192dd6 to your computer and use it in GitHub Desktop.
Save juan-cortes/e81080297a0b5f013844e6542d192dd6 to your computer and use it in GitHub Desktop.
Closure example function factory
function powerOfNFactory(power){
return function generatedFunction(subject){
return Math.pow(subject, power);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment