Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <h2>JavaScript Prompt</h2>
  6.  
  7. <button onclick="myFunction()">Try it</button>
  8.  
  9. <p id="demo"></p>
  10.  
  11. <script>
  12. function myFunction(){
  13. var preference = prompt("Do you like potatoes?");
  14. if (preference == "yes") {
  15. for(var i=1; i<=7; i++){
  16. var potatoes = "#";
  17. console.log(potatoes.repeat(i))
  18. }
  19. } else if(preference == "no"){
  20. alert("You are a disgrace")
  21. } else {
  22. alert("I didn't understand.")
  23. }
  24.  
  25. }
  26. </script>
  27.  
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement