Date Difference Calculation

suggest change

To compare the difference of two dates, we can do the comparison based on the timestamp.

var date1 = new Date();
var date2 = new Date(date1.valueOf() + 5000);

var dateDiff = date1.valueOf() - date2.valueOf();
var dateDiffInYears = dateDiff/1000/60/60/24/365; //convert milliseconds into years

console.log("Date difference in years : " + dateDiffInYears);

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents