Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. function birthdayCountdown(daysUntilMyBirthday){
  2. if(daysUntilMyBirthday === 0){
  3. console.log('♪ღ♪HAPPY BIRTHDAY♪ღ♪');
  4. }else if(daysUntilMyBirthday === 1){
  5. console.log('1 DAY UNTIL MY BIRTHDAY!!!');
  6. }else if(daysUntilMyBirthday > 30){
  7. console.log(`${daysUntilMyBirthday} days until my birthday. Such a long time... :(`);
  8. }else if(daysUntilMyBirthday <= 30 && daysUntilMyBirthday != 1){
  9. console.log(`${daysUntilMyBirthday} DAYS UNTIL MY BIRTHDAY!!!`);
  10. }
  11. }
  12.  
  13. birthdayCountdown(0);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement