Returns true if date is in the future (after the current moment).
true
date
The date to check.
isFuture(new Date("2099-01-01")) // => trueisFuture(new Date("2000-01-01")) // => false Copy
isFuture(new Date("2099-01-01")) // => trueisFuture(new Date("2000-01-01")) // => false
Returns
trueifdateis in the future (after the current moment).