get the difference (in days) between two dates

PHOTO EMBED

Sat Feb 26 2022 02:22:19 GMT+0000 (Coordinated Universal Time)

Saved by @mboljar

const getDaysDiffBetweenDates = (dateInitial, dateFinal) =>
  (dateFinal - dateInitial) / (1000 * 3600 * 24);

// Example
getDaysDiffBetweenDates(new Date('2017-12-13'), new Date('2017-12-22')); // 9
content_copyCOPY

https://madza.hashnode.dev/24-modern-es6-code-snippets-to-solve-practical-js-problems?guid