627 B
627 B
title, type, tags, cover, dateModified
| title | type | tags | cover | dateModified | |
|---|---|---|---|---|---|
| Check if date is between two dates | snippet |
|
flower-portrait-6 | 2020-10-20T23:02:01+03:00 |
Checks if a date is between two other dates.
- Use the greater than (
>) and less than (<) operators to check ifdateis betweendateStartanddateEnd.
const isBetweenDates = (dateStart, dateEnd, date) =>
date > dateStart && date < dateEnd;
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