Partial Application
It is a way for us to partially apply a function. Well, it means taking a function applying some of its arguments into the function, so it remembers those parameters and then it uses closures to later on be called with all the rest of the arguments.
That's the main difference between currying and partial application. Partial application expect all parameter on the second call. VS currying which expect one argument at one time.
Last updated
Was this helpful?