I would like to see if a date object is over one year old! I don't know how to even compare them due to the leap years etc..
var oldDate = new Date("July 21, 2001 01:15:23");
var todayDate = new Date();
if(???) {
console.log("it has been over one year!");
} else {
console.log("it has not gone one year yet!");
}