Skip to content

Instantly share code, notes, and snippets.

@nkaretnikov
Created April 18, 2015 16:08
Show Gist options
  • Save nkaretnikov/4ad7952f220989761d59 to your computer and use it in GitHub Desktop.
Save nkaretnikov/4ad7952f220989761d59 to your computer and use it in GitHub Desktop.
Apply
function transparentWrapping(f) {
return function() {
return f.apply(null, arguments);
};
}
function add3(x, y, z) {
return x + y + z;
}
console.log(transparentWrapping(add3)(1, 2, 3));
// 6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment