Files
30-seconds-of-code/glossary/Currying.md
Angelos Chalaris 0f830fa922 Create Currying.md
2018-07-24 13:12:29 +03:00

242 B

Currying

Currying is a way of constructing functions that allows partial application of a function's arguments. Practically, this means that a function is broken down into a series of functions, each one accepting part of the arguments.