Advertisement
Guest User

Untitled

a guest
Oct 9th, 2015
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>Do you want potatoes?</title>
  6. </head>
  7. <body>
  8. <h1>Quête Javascripting</h1>
  9. <script>
  10. var potatoe = "#";
  11. function potatoes(){
  12. for (var i = 0; i <= 7; i++) {
  13. console.log(potatoe);
  14. potatoe = potatoe + "#";
  15. }
  16. }
  17.  
  18. var result = prompt("Hey Polo! Tu aimes ça les patates ?! \n (Oui? Non? Autre?)");
  19.  
  20. if (result.toLowerCase() === "oui"){
  21. potatoes();
  22. }
  23. else if (result.toLowerCase() === "non"){
  24. alert("Tu ne sais pas ce que tu rate !!!");
  25. }
  26. else{
  27. alert("Je te sens comme tiraillé... Faut faire un choix !");
  28. }
  29. </script>
  30. </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement