JSFiddle - React, Tailwind, and code Playground

by Pritesh Patel

JavaScript

// first mate aa code
function add(a,b){
 let c;
 c = a+b;
 return c;
}
 console.log(add(2,4));

// second vadu curry
function add1(x) {
return (y) => {

return x + y;

};
return x+y;
}
console.log(add1(2,4));
console.log(add1(2)(4));