Function of javascript.

// let x = myFunction(4, 3); // document.getElementById("demo").innerHTML = x; // function myFunction(a, b) { // return a * b; // } var c = myFunction(50,30); function myFunction(a,b) { return a+b; }

Comments

Popular Posts