Files
30-seconds-of-code/javascript/snippets/is-same-date.md
2023-05-01 22:35:56 +03:00

490 B

title, type, tags, cover, dateModified
title type tags cover dateModified
Date is same as another date snippet
date
pineapple-at-work 2020-11-03T22:11:18+02:00

Checks if a date is the same as another date.

  • Use Date.prototype.toISOString() and strict equality checking (===) to check if the first date is the same as the second one.
const isSameDate = (dateA, dateB) =>
  dateA.toISOString() === dateB.toISOString();
isSameDate(new Date(2010, 10, 20), new Date(2010, 10, 20)); // true