Guest User

Untitled

a guest
Jun 20th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. var thisYear = new Date(Date.now()).getFullYear();
  2. var year = 2015;
  3.  
  4. if (year === thisYear) {
  5. console.log("I'm in the present!");
  6. } else if (year < thisYear) {
  7. console.log("Whoa! Blast from the past!");
  8. } else {
  9. console.log("Greetings from the future!");
  10. }
Add Comment
Please, Sign In to add comment