function multiply(a, b){ a * b }
const multiply = a => b => a * b;
console.log(multiply(4)(3));
I am currently studying. I have worked in the telecommunications industry. Programming has always fascinated me, and I see myself in this field. I am just getting started and striving for victory. I am a quick learner, not afraid of challenges, and love coffee☕.
function multiply(a, b){ a * b }
const multiply = a => b => a * b;
console.log(multiply(4)(3));