Skip to content

Instantly share code, notes, and snippets.

@laniehei
Created April 19, 2018 17:01
Show Gist options
  • Save laniehei/7acfd8fad27c8e7ab6d1e77b88652b2d to your computer and use it in GitHub Desktop.
Save laniehei/7acfd8fad27c8e7ab6d1e77b88652b2d to your computer and use it in GitHub Desktop.
function createBase(n) {
return function addSix(m) {
return n + m;
}
}
var addSix = createBase(6);
addSix(10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment