function funcA(a){ return function(b){ return function(c){ return function(d){ return a+b+c+d; } } }}console.log(funcA(1)(2)(3)(4));