Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3.  
  4. <body>
  5.  
  6. <script>
  7.  
  8. let patate = prompt("Hey mon ami ! Tu aimes ça les patates ?");
  9.  
  10. if (patate ==='yes'|| patate ==='Yes' || patate === 'oui' || patate === 'Oui'){
  11. let txt = '#';
  12. for (let i=0; i<7; i++){
  13. console.log(txt);
  14. txt = txt+'#';
  15. }
  16. } else
  17. if (patate ==='no' || patate === 'No' || patate === 'Non' || patate ==='non'){
  18. alert("Oh non, dommage pour toi!");
  19. } else {
  20. alert("Je vous sens comme tiraillé");
  21. }
  22.  
  23.  
  24.  
  25. </script>
  26.  
  27. </body>
  28.  
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement