JSFiddle - React, Tailwind, and code Playground
by Cioc Andrei
JavaScript
function prod(a) {
return function(b) {
return a*b;
};
}
alert( prod(2)(20) )
by Cioc Andrei
function prod(a) {
return function(b) {
return a*b;
};
}
alert( prod(2)(20) )