JS Date whose UTC fields (getUTCFullYear(), getUTCMonth(), etc.)
represent the intended wall-clock Y/M/D/H/M/S in the supplied IANA time zone.
If date.getTime() is NaN, a RangeError('Invalid Date') is thrown.
IANA time zone identifier (branded TimeZoneId). If not recognized by the host ICU/Intl data, a RangeError('Invalid time zone') is thrown.
Target epoch unit: 'ms' for milliseconds or 's' for integer
seconds. Any other value causes RangeError('Invalid time unit').
Epoch timestamp in the requested unit. In 's' mode, returns
truncated integer seconds (Math.trunc).
Interprets a Date's UTC Y/M/D/H/M/S as a wall-clock time in
timezoneand returns the epoch in the configured unit.Notes