Advertisement
Guest User

Untitled

a guest
Oct 7th, 2015
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. var user = prompt("You have been approached by a mugger. Do you run, oblige, or fight?").toUpperCase();
  2.  
  3. switch(user){
  4. case 'RUN':
  5. var run = prompt("Are you athletic?")
  6. if( run === "yes"){
  7. console.log("You made it away");
  8. }
  9. else{
  10. console.log("He caught up to you!");
  11. case 'OBLIGE':
  12. console.log("You better call your credit card companies and cancel them!");
  13. break;
  14. case 'fight':
  15. console.log("Damn, tough guy over here");
  16. break;
  17. default:
  18. console.log("That wasn't one of the options");
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement