Answers for "function tag in javascript"

0

the function tag in js

<html>
  <p id = demo> </p>
  <p> this javascript function is returning the product of p1 and p2.
 <script>
   function myFunction (p1, p2){
   return p1 * p2
   }
   document.getElementById("demo").innerHTML = myFunction(8, 8)
  </script>
Posted by: Guest on November-24-2020
0

the function tag in js

function myFunction() {
console.log('Party time')
}
myFunction();
Posted by: Guest on November-24-2020

Browse Popular Code Answers by Language