Update isBetweenDates.md

This commit is contained in:
Angelos Chalaris
2020-10-07 21:04:27 +03:00
committed by GitHub
parent df62bc3494
commit 3e834006aa

View File

@ -3,11 +3,9 @@ title: isBetweenDates
tags: date,beginner
---
Check if a date is between two other dates
Check if a date is between two other dates.
- Use the greater than operator (`>`) to check if the `date` comes after the `dateStart`.
- Use the less than operator (`<`) to check if the `date` comes before the `dateEnd`.
- Use the logical and operator (`&&`) to check if the `date` is between the `dateStart` and the `dateEnd`.
- Use the greater than (`>`) and less than (`<`) operators to check if `date` is between `dateStart` and `dateEnd`.
```js
const isBetweenDates = (dateStart, dateEnd, date) => date > dateStart && date < dateEnd;
@ -16,5 +14,4 @@ const isBetweenDates = (dateStart, dateEnd, date) => date > dateStart && date <
```js
isBetweenDates(new Date(2010, 11, 20), new Date(2010, 11, 30), new Date(2010, 11, 19)); // false
isBetweenDates(new Date(2010, 11, 20), new Date(2010, 11, 30), new Date(2010, 11, 25)); // true
isBetweenDates(new Date(2010, 11, 20), new Date(2010, 11, 30), new Date(2010, 11, 31)); // false
```