Advertisement
svetoslavhl

11

Jun 2nd, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 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 while loop</title>
  6. </head>
  7. <body>
  8. <!-- File: listing-7-11.htm -->
  9. <script type="text/javascript">
  10. <!--
  11. var intDieValue=Math.floor(Math.random()*6);
  12. intDieValue++;
  13. while(intDieValue != 6)
  14. {
  15. document.write("You threw a " + intDieValue + "<br/>");
  16. intDieValue=Math.floor(Math.random()*6);
  17. intDieValue++;
  18. }
  19. document.write("You threw a " + intDieValue + " - game over! <br/>");
  20. // -->
  21. </script>
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement