w3resource

JavaScript: Check if a date is between two other dates

JavaScript Datetime: Exercise-54 with Solution

Write a JavaScript function to check if a given date is between two other dates.

Sample Solution:

HTML Code:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Check if a date is between two other dates</title>
</head>
<body>

</body>
</html>

JavaScript Code:

//#Source https://bit.ly/2neWfJ2
const isBetweenDates = (dateStart, dateEnd, date) =>
  date > dateStart && date < dateEnd;
console.log(isBetweenDates(
  new Date(2010, 11, 20),
  new Date(2010, 11, 30),
  new Date(2010, 11, 19)
));
console.log(isBetweenDates(
  new Date(2010, 11, 20),
  new Date(2010, 11, 30),
  new Date(2010, 11, 25)
));

Sample Output:

false
true

Flowchart:

Flowchart: JavaScript- Check if a date is between two other dates

Live Demo:

See the Pen javascript-date-exercise-54 by w3resource (@w3resource) on CodePen.


Contribute your code and comments through Disqus.

Previous: Write a JavaScript function to get the month start date.
Next: Check if a given date is weekday, weekend.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.