How to JS - Pass a function result to another function

preview_player
Показать описание
Straight to the point javascript tutorials and examples explained in plain language.
Рекомендации по теме
Комментарии
Автор

Thank you for explaining this! Here is the code is someone needs it:
function

return console.log("I passed the function result... " + functionresult);
}

function passvariable(nameofvariable){
return "My variable name is: " + nameofvariable;
}

var myfunctionresult = passvariable("Apple");


jeff-creations
Автор

i understand ur work, but i think u should always show the process that leads too ur result

davidakindayo