Advertisement
amoussa11

JavaScript Functions

Feb 19th, 2019
384
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <h2>JavaScript Functions</h2>
  6.  
  7. <p>This example calls a function which performs a calculation, and returns the result:</p>
  8.  
  9. <p id="demo"></p>
  10.  
  11. <script>
  12. function myFunction(p1, p2) {
  13.   return p1 * p2;
  14. }
  15. document.getElementById("demo").innerHTML = myFunction(4, 3);
  16. </script>
  17.  
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement