Merge pull request #1717 from sujit510/feature/getDifferenceInSeconds

Feature/get difference in seconds
This commit is contained in:
Isabelle Viktoria Maciohsek
2021-04-24 12:41:52 +03:00
committed by GitHub

View File

@ -0,0 +1,20 @@
---
title: getSecondsDiffBetweenDates
tags: date,beginner
---
Calculates the difference (in seconds) between two dates.
- Subtract the two `Date` objects and divide by the number of milliseconds in a second to get the difference (in seconds) between them.
```js
const getSecondsDiffBetweenDates = (dateInitial, dateFinal) =>
(dateFinal - dateInitial) / 1000;
```
```js
getSecondsDiffBetweenDates(
new Date('2020-12-24 00:00:15'),
new Date('2020-12-24 00:00:17')
); // 2
```