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

505 B

title, tags, expertise, firstSeen, lastUpdated
title tags expertise firstSeen lastUpdated
Date is same as another date date beginner 2018-09-29T13:58:38+03:00 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