Guest User

Untitled

a guest
Jul 16th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. switch(true) {
  2. case (planet.toUpperCase() === "SUN"):
  3. text2 = "hero";
  4. break;
  5. case (planet.toUpperCase() === "MOON"):
  6. text2 = "mother";
  7. break;
  8. case (planet.toUpperCase() === "MERCURY"):
  9. text2 = "twin";
  10. break;
  11. case (planet.toUpperCase() === "Venus"):
  12. text2 = "courtesan";
  13. break;
  14. case (planet.toUpperCase() === "MARS"):
  15. text2 = "soldier";
  16. break;
  17. default:
  18. text2 = "planet";
  19. }
  20.  
  21. if(planet === "sun" || planet === "Sun" || planet === "SUn") {
  22. // text assignment
  23. }
  24.  
  25. if (planet.toLowerCase() === "sun") {
  26. // text assignment
  27. }
Add Comment
Please, Sign In to add comment