Date.equals
$date.equals($otherDate) -> boolean
Description
Return true
is Date object is equal to $otherDate
.
$otherDate
can be one of the following:
- Date object
- Date string (e.g. “2021-10-17”, “now”, “3 days ago”). See Date Strings.
- Unix timestamp (integer)
$now = Date.now() $nextWeek = $now.add('7 days') $now.equals($now) //= true $nextWeek.equals('tomorrow') //= false