Skip to content
Advertisement

Javascript – Using compose with reduce

I am learning functional programming with javascript. I have learned that 2 parameters are needed for reduce. Accumalator and the actual value and if we don’t supply the initial value, the first argument is used. but I can’t understand how the purchaseItem functions is working in the code below. can anyone please explain.

JavaScript

Advertisement

Answer

It’s a way of creating a pipeline of functions whereby the output from one function is used as the parameter of the next, so we end up with a composed function that is effectively

JavaScript

Writing the reduce out in longhand might help in understanding:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement