Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>JavaScripting</title>
  6. <link rel="stylesheet" type="text/css" href="style.css">
  7. </head>
  8. <body>
  9. <script>
  10. let tasDePatates = '#'
  11. let question = prompt("Hey mon ami ! Tu aimes ça les patates ?");
  12. if (question === 'Oui' || question === 'oui' || question === 'Yes' || question === 'yes'){
  13. for(let i=0; i<7; i++){
  14. console.log(tasDePatates);
  15. tasDePatates = tasDePatates + '#';
  16. };
  17. }else if (question === 'Non' ||question === 'non' ||question === 'No' ||question === 'no'){
  18. alert('Ohhh c\'est pourtant si bon les patates mon ami!');
  19. }else{
  20. alert('Je vous sens comme tiraillé');
  21. };
  22. </script>
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement