Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
62
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.  
  3. <html>
  4.  
  5. <head>
  6. <title>Potatoes Fever</title>
  7. </head>
  8.  
  9. <body>
  10.  
  11. <script>
  12.  
  13. let potatoes = prompt('Hey mon ami ! Tu aimes ça les patates ?', '');
  14.  
  15. if (potatoes == 'oui') {
  16. for (let i = 0; i < 7; i++) {
  17. console.log('#'.repeat(i+1));
  18. }
  19. }
  20. else if (potatoes == 'non') {
  21. alert('Je suis déçu ;0(');
  22. }
  23. else {
  24. alert('Je vous sens comme tiraillé');
  25. }
  26.  
  27. </script>
  28.  
  29. </body>
  30.  
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement