Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created December 5, 2015 06:56
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 chuck0523/507dd0644a06cc368c6a to your computer and use it in GitHub Desktop.
Save chuck0523/507dd0644a06cc368c6a to your computer and use it in GitHub Desktop.
function splat(fun) {
return function(array) {
return fun.apply(null, array);
};
}
var addArrayElements = splat(function(x, y) { return x + y });
addArrayElements([1, 2]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment