// write a function which helps to achieve multiply(a)(b) and return products of a and b . const multiply =(num1)=>{ return (num2)=>{ return num1*num2 ; } } console.log(multiply(10)(2));