Files
30-seconds-of-code/snippets/getSecondsDiffBetweenDates.md
Isabelle Viktoria Maciohsek 8bf67754ce Make expertise a field
2022-03-01 20:21:45 +02:00

571 B

title, tags, expertise, firstSeen, lastUpdated
title tags expertise firstSeen lastUpdated
Date difference in seconds date beginner 2021-04-24T12:39:48+03:00 2021-04-24T12:39:48+03:00

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.
const getSecondsDiffBetweenDates = (dateInitial, dateFinal) =>
  (dateFinal - dateInitial) / 1000;
getSecondsDiffBetweenDates(
  new Date('2020-12-24 00:00:15'),
  new Date('2020-12-24 00:00:17')
); // 2