Course · Section 17: Modern JavaScript Development: Modules, Tooling, and Functional · Lecture 294: Declarative and Functional JavaScript Principles
Implement `curriedSum(a, b, c)` by defining a curried `add` (a function returning a function returning a function) and calling it as `add(a)(b)(c)`.
+ 1 hidden test run on Submit.
Currying turns a multi-argument function into a chain of single-argument calls.
Run your code to see results.