This reference may be helpful in understanding how you can work with Date objects.
If you invoke the Date constructor without passing in any parameters, what date will be stored in the object that is returned?
What is an 'epoch'?
What is a 'Unix timestamp' (also known as 'epoch time')?
What is the actual date of the epoch for Unix timestamps?
What does the getTime() method of a date object return (refer to the link that was mentioned above, or find another reference on the Date object in JavaScript)?
If you are working with 2 date objects, how could you use the getTime() method to determine if one date is more recent than the other?