Guest User

Untitled

a guest
Jun 22nd, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset=UTF-8>
  5. <title>Bonjour tout le monde !</title>
  6. </head>
  7. <body>
  8. <script>
  9. let asking = window.prompt('Hey mon ami ! Tu aimes ça les patates ?');
  10. if (asking === 'oui') {
  11. var rows = 8;
  12. for(var i=1; i<=rows; i++){
  13. for(var j=1; j<=i; j++ ){
  14. document.write("#");
  15. }
  16. document.write("<br/>"); }
  17. } else if (asking === 'non') {
  18. window.alert('Je suis très décu!');
  19. } else {
  20. alert('je vous sens tiraillé');
  21. }
  22.  
  23. </script>
  24. </body>
  25. </html>
Add Comment
Please, Sign In to add comment