Currying
In this lesson you will be introduced to a method of writing functions with multiple parameter lists.
Currying is a style of defining functions where essentially every function is mapped to an expression that consists of nested anonymous functions, that in turn take one parameter each.
In other words, rather than a single parameter list, a ...