Partial Application
Partial Application is a way for us to partially apply a function.
It is a process of producing a function with a smaller number of parameters. That means taking a function, applying some of it's argument in to the function and uses closures for later on calling the rest of the arguments.
Last updated