Ask Your Question
1

How to obtain the amount of minutes between two dates using JavaScript?

asked 2023-05-26 20:47:38 +0000

plato gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2023-05-26 20:56:01 +0000

lalupa gravatar image

You can obtain the amount of minutes between two dates using JavaScript by first calculating the difference between the two dates, and then converting the difference to minutes.

Here's an example code sample:

const date1 = new Date('2021-04-05T10:33:00');
const date2 = new Date('2021-04-05T11:45:00');

const diffInMs = Math.abs(date2 - date1);
const diffInMins = Math.floor((diffInMs/1000)/60);

console.log(diffInMins); // Output: 72

In this example, date1 and date2 are initialized to the two dates you want to calculate the difference between. The Math.abs() function is used to ensure that the difference returned is always positive. The difference is then converted to minutes by dividing the difference in milliseconds by 1000 to convert to seconds, and then dividing by 60 to convert to minutes. Finally, the result is logged to the console.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-05-26 20:47:38 +0000

Seen: 8 times

Last updated: May 26 '23