Multi-Argument Functions As Syntactic Sugar
Last updated
Was this helpful?
Last updated
Was this helpful?
When writing a multi-argument function, like the following adder
function:
We are utilizing a syntactic sugar of the function syntax. The same function can be written as such:
As you can see, we can apply the function in the same way.
This is useful because it means we can partially apply (or curry) our functions to create other functions.