Guest User

Untitled

a guest
Mar 18th, 2018
78
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.  
  3. <html>
  4. <meta charset="utf-8">
  5. <title>Hey mon ami ! Tu aimes ça les patates ?</title>
  6.  
  7. <body>
  8. <script>
  9. let confirm = prompt("Hey mon ami ! Tu aimes ça les patates ?");
  10. var patates = '#'
  11.  
  12. if (confirm == 'oui'){
  13. for (i = 0; i < 7; i++){
  14. console.log(patates);
  15. patates += '#';
  16. }
  17. }
  18. else if (confirm == 'non')
  19. alert(" :( ");
  20.  
  21. else
  22. alert("Je vous sens comme tiraillé");
  23.  
  24. </script>
  25.  
  26. </body>
  27.  
  28. </html>
Add Comment
Please, Sign In to add comment