function invoca(a,b){ return a()+ b(); } function uno(){ return 1; }function dos(){ return 2; } console.log(invoca(uno,dos))