Advertisement
svetoslavhl

10

Jun 2nd, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Script-Type" content="text/javascript" />
  5. <title>JavaScript coin</title>
  6. </head>
  7. <body>
  8. <!-- File: listing-7-10.htm -->
  9. <script type="text/javascript">
  10. <!--
  11. document.write("The coin has landed on ");
  12. var fltRandomNumber = Math.random();
  13. if(fltRandomNumber < 0.5)
  14. {
  15. document.write(" head!");
  16. }
  17. else
  18. {
  19. document.write(" Tails!");
  20. }
  21. // -->
  22. </script>
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement