Prepare repository for merge
This commit is contained in:
20
javascript/snippets/is-same-date.md
Normal file
20
javascript/snippets/is-same-date.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
title: Date is same as another date
|
||||
type: snippet
|
||||
tags: [date]
|
||||
cover: pineapple-at-work
|
||||
dateModified: 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.
|
||||
|
||||
```js
|
||||
const isSameDate = (dateA, dateB) =>
|
||||
dateA.toISOString() === dateB.toISOString();
|
||||
```
|
||||
|
||||
```js
|
||||
isSameDate(new Date(2010, 10, 20), new Date(2010, 10, 20)); // true
|
||||
```
|
||||
Reference in New Issue
Block a user