Write a function isAfter
, which takes two dates as parameters, for checking if the first date is after the second date. It returns true
if it is after and false
if not.
Please note the function should be exported from the script.js file, as in the example below:
export function isAfter(date, dateToCompare) {
// your code...
}
This function takes two parameters:
date
– a Date object
dateToCompare
– a Date object
The function should return true
if the date
is after dateToCompare
.
It should return false
if the date is before dateToCompare
.
It should return false
if any of the dates are invalid.
An example of using the function:
let date1 = new Date(2022, 22, 10);
let date2 = new Date(2022, 23, 10);
isAfter(date1, date2); // false
isAfter(date2, date1); // true
isAfter(date1, new Date(undefined)); // false