Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. // some comments
  2.  
  3. <!DOCTYPE html>
  4. <html>
  5. <body>
  6.  
  7. <h2>JavaScript Functions</h2>
  8.  
  9. <p>Outside myFunction() carName is undefined.</p>
  10.  
  11. <p id="demo1"></p>
  12.  
  13. <p id="demo2"></p>
  14.  
  15. <script>
  16. myFunction();
  17.  
  18. function myFunction() {
  19. var carName = "Volvo";
  20. document.getElementById("demo1").innerHTML =
  21. typeof carName + " " + carName;
  22. }
  23.  
  24. document.getElementById("demo2").innerHTML =
  25. typeof carName;
  26. </script>
  27.  
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement