+ 1
How use a previous out value from a function in the next code
Imagine this: function op(o,p) {alert(p*o)} ts(5,6); How can I use the answer I get from the function above to write a new code.
3 Réponses
0
Function name(a,b){
var c = a*b ;
return c ;
}
var d =5*name(4,5) ;
// var d = 100 ;
0
Return what you want and save it in a variable
0
How?