Currying in JS
Currying is a process in which it takes a function which have more than one parameter and converts it in function which takes only one parameter.
Currying
Let's understand using simple example
//normal function
const add = (a,b) => a + b;
console.log...
pratikdevle.hashnode.dev2 min read