Skip to content
Advertisement

How to tell if a date is between two other dates?

I have the following codes:

JavaScript

date, start and end are all variables with the format of 1/1. What should I do to have it print out the right result? i tried date as 10/2, start as 3/14 and end as 11/7 and it’s print ‘No!’, which means it’s not running right. I guess have to format them to a date format and then compare them.

Advertisement

Answer

As you are still not satisfied, I have another answer for you. Without using datetime and year.

It just uses built-in tuples and comparing them:

JavaScript

You can create tuple like these easily:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement