I have got a quiz that asks the following question, but Im quite not sure if it is possible to pass multiple variables like that on Javascript functions:
Write a function called "MultiplyBy" which will produce the following outputs when invoked:
console.log(mul(2)(3)(4)); // output : 24
console.log(mul(4)(3)(4)); // output : 48