Advertisement
askarulytarlan

Switch javascript

Jan 9th, 2016
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. var answer = prompt("What sport do you like?");
  2.  
  3. switch(answer) {
  4. case 'basketball':
  5. console.log("Oh. Fine. I think you will ne Michael Jordan");
  6. break;
  7. case 'football':
  8. console.log("That's great. Definitely you will be Cristiano Ronaldo");
  9. break;
  10. case 'tennis' :
  11. console.log("I think you will not be worse than Rafael Nadal")
  12. break;
  13. default:
  14. console.log("That's also great.")
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement