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