Currying
Currying is a technique of translating the evaluation of a function that takes multiple arguments.
Currying is useful for creating multiple utility functions.
Instead of running the same code multiple times, i can now run the first part code once and second part code for usability times;
Last updated