Answers for "invocar funcion javascript"

0

funciones invocan a funciones javascript

function invoca(a,b){
    return a()+ b();     
}
function uno(){
    return 1;    
}function dos(){
    return 2;    
}
console.log(invoca(uno,dos))
Posted by: Guest on May-31-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language