Question d’entretien chez TCS

write Javascript function for add(1)(2)(3)

Réponse à la question d'entretien

Utilisateur anonyme

2 août 2024

function add(a){ return function (b){ return function (c){ return a+b+c } } }