Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <script id="jsbin-javascript">
  2. var fortune = prompt("Choose between bird, camera, ghost or robot.")
  3.  
  4. if (fortune === "bird")
  5. alert("You have the big gae")
  6.  
  7. if (fortune === "camera")
  8. alert("You have the big gae")
  9.  
  10. if (fortune === "ghost")
  11. alert("You have the big gae")
  12.  
  13. if (fortune === "robot")
  14. alert("You shall pass")
  15.  
  16. else
  17. alert("wat")
  18. </script>
  19.  
  20.  
  21. <script id="jsbin-source-javascript" type="text/javascript">var fortune = prompt("Choose between bird, camera, ghost or robot.")
  22.  
  23. if (fortune === "bird")
  24. alert("You have the big gae")
  25.  
  26. if (fortune === "camera")
  27. alert("You have the big gae")
  28.  
  29. if (fortune === "ghost")
  30. alert("You have the big gae")
  31.  
  32. if (fortune === "robot")
  33. alert("You shall pass")
  34.  
  35. else
  36. alert("wat")</script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement