Guest User

Untitled

a guest
Feb 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Js Guess Game</title>
  5. </head>
  6. <body>
  7. <script>
  8.  
  9. function Received() {
  10. prompt('Enter a number');
  11. }
  12.  
  13. var input1= parseInt(Received());
  14. var ans = Math.ceil(Math.random() * 10 + 1);
  15.  
  16. if (input1=== ans) {
  17. document.write("Guess is to high");
  18. }else {
  19. document.write("Try Again " + "The Random number is "+ ans);
  20. Received();
  21.  
  22. }
  23.  
  24.  
  25. </script>
  26. </body>
  27. </html>
Add Comment
Please, Sign In to add comment