Files
30-seconds-of-code/glossary/Currying.md
2019-08-13 11:19:29 +03:00

8 lines
268 B
Markdown

---
title: Currying
tags: 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.