Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save phpsmarter/a9234d8ae47ca9746c963b406dcf9348 to your computer and use it in GitHub Desktop.
Save phpsmarter/a9234d8ae47ca9746c963b406dcf9348 to your computer and use it in GitHub Desktop.
Partially applied reduce with arrow functions.js
var reduce = fn => (Arr, acc) => Arr.reduce(fn, acc);
var add = reduce((acc,x)=>acc+x);
add([1,2,3],0);// -> 6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment