Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //HERE YOU WRITE YOUR CODE
  2.  
  3.     if ((month == 3 && day >= 21) || (month == 4 && day <= 19) {
  4.         console.log('Aries');
  5.     } else if ((month == 4 && day >= 20) || (month == 5 && day <= 20)) {
  6.         console.log('Tarius');
  7.     } else if ...
  8.    
  9.     //HERE YOU END WRITING YOUR CODE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement