The date to check
The date is in the future
isFuture
false
Is the given date in the future?
// If today is 6 October 2014, is 31 December 2014 in the future?const result = isFuture(new Date(2014, 11, 31))//=> true Copy
// If today is 6 October 2014, is 31 December 2014 in the future?const result = isFuture(new Date(2014, 11, 31))//=> true
The date to check