Hi Friends đź‘‹,

Welcome To Infinitbility! ❤️

To get hours between two dates,

  1. Get both dates as a time using the getTime() method.
  2. subtract them which you get using the getTime() method.
  3. Devied your output time with / 36e5 ( 36e5 is the scientific notation for 60601000 )

It will return your difference of dates in number of hours.

The getTime() method returns the number of milliseconds since the ECMAScript epoch.

You can use this method to help assign a date and time to another Date object. This method is functionally equivalent to the valueOf() method.

Today, I’m going to show How do I get hours between two dates in javascript, here I will use the javascript getTime() method and the above-mentioned conditions to get hours between the start and end date time.

Let’s start the today’s tutorial How do you get hours between two dates in javascript?

In the following example, we are going to do

  1. Create two dates starting and ending date
  2. Create a function that accepts a date and returns hours
  3. Use a function for multiple date examples

let’s write the code.

function getHours(startingDate, endingDate) {
    return parseInt(Math.abs(endingDate.getTime() - startingDate.getTime()) / 36e5);
}
const startDate = new Date("2021-08-25 07:41:07");
const endDate =  new Date("2021-08-25 09:50:07");
getHours(startDate, endDate); // âś… 2

In the above program, we have created a custom function getHours() and pass dates to get a mumber of hours.

let’s check the output.

javascript, get hours between two dates example
javascript, get hours between two dates example

I hope it’s help you, All the best 👍.