Currying functions in js
Currying function is a modern feature in javascript that let’s to instead of send multiple arguments and callbacks, send them in another format.I mean, if a function needs to receive the result of another function, maybe it’s a good opportunity to use currying! let’s read here