Vanilla JavaScript How many Days Between Two Dates

β€” 2 minute read

permalink

Today we will learn how to get the number of days between two dates in JavaScript.

Calculate date difference in days permalink

First, we are going to define two date objects.

const date1 = new Date('12/25/2022');
const date2 = new Date();

Then we need to get the difference between these two dates.

const difference = date1.getTime() - date2.getTime();

The date difference is now in milliseconds, so we must convert it to days.

(1000 milliseconds _ (60 minutes _ 60 seconds) * 24 hours)

This will return the number of days between both dates:

const days = Math.ceil(difference / (1000 * 3600 * 24));
console.log(days + ' days to Christmas');

See the code example in this Codepen permalink

See the result and calculate how many days are left until Christmas.

See the Pen Vanilla JavaScript Days Between Two Dates by Chris Bongers (@rebelchris) on CodePen.

Thank you for reading, and let's connect! permalink

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter