Merge pull request #1717 from sujit510/feature/getDifferenceInSeconds
Feature/get difference in seconds
This commit is contained in:
20
snippets/getSecondsDiffBetweenDates.md
Normal file
20
snippets/getSecondsDiffBetweenDates.md
Normal 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
|
||||
```
|
||||
Reference in New Issue
Block a user