Answers for "ecmascript currying"

3

ecmascript currying

// It is also called nested function is ecmascript
const multiply = (a) => (b) => a*b;
multiply(3)(4); //Answer is 12

const multipleBy5 = multiply(5);
multipleBy5(10); //Answer is 50
Posted by: Guest on May-23-2021

Code answers related to "ecmascript currying"

Code answers related to "Javascript"

Browse Popular Code Answers by Language