Checks if a date is before another date.
The date to check.
The date to compare against.
true if the date is before the date to compare, otherwise false.
isDateBefore('2020-01-01', '2021-01-01'); // true Copy
isDateBefore('2020-01-01', '2021-01-01'); // true
isDateBefore('2021-01-01', '2020-01-01'); // false Copy
isDateBefore('2021-01-01', '2020-01-01'); // false
Checks if a date is before another date.