Advertisement
Guest User

Untitled

a guest
Mar 21st, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. let moonPhase = 'full';
  2.  
  3. switch (moonPhase) {
  4. case 'full':
  5. console.log('Howl!');
  6. break;
  7. case 'mostly full':
  8. console.log('Arms and legs are getting hairier');
  9. break;
  10. case 'mostly new':
  11. console.log('Back on two feet');
  12. break;
  13. default:
  14. console.log('Invalid moon phase!');
  15. break;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement