Aspect | Normal Function | Curried Function |
---|---|---|
Syntax | sum(2, 3, 4) | sum(2)(3)(4) |
Arguments | All at once | One by one |
Flexibility | Less flexible | Highly flexible |
Reusability | Less reusable | Highly reusable |
Example | Call the entire function every time | Partial application possible |