Checks if a date is between two other dates.
>
) and less than (<
) operators to check if date
is between dateStart
and dateEnd
.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
JavaScript, Date
Counts the weekdays between two dates.
JavaScript, Date
Calculates the difference (in months) between two dates.
JavaScript, Date
Calculates the difference (in days) between two dates.