Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3.  
  4. <body>
  5.  
  6. <script>
  7.  
  8.  
  9. let question = prompt('Hey mon ami ! Tu aimes ça les patates ?');
  10.  
  11. if (question === 'oui') {
  12. let tas ='';
  13.  
  14. for (let i = 0; i < 7; i++) {
  15. tas += '#';
  16. console.log(tas);
  17. }
  18.  
  19. }
  20. else if (question === 'non') {
  21. alert('nahhhhhhh comment?');
  22. }
  23. else {
  24. alert('Je vous sens comme tiraillé');
  25. }
  26.  
  27.  
  28. </script>
  29.  
  30. <p></p>
  31.  
  32. </body>
  33.  
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement