Date.prototype.toTemporalInstant()
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The toTemporalInstant() method of Date instances returns a new Temporal.Instant object with the same epochMilliseconds value as this date's timestamp.
Use this method to convert legacy Date values to the Temporal API, then further convert it to other Temporal classes as necessary.
Syntax
Parameters
None.
Return value
A new Temporal.Instant object with the same epochMilliseconds value as this date's timestamp. Its microsecond and nanosecond components are always 0.
Exceptions
RangeError-
Thrown if the date is invalid (it has a timestamp of
NaN).
Examples
Using toTemporalInstant()
Specifications
| Specification |
|---|
| Temporal # sec-date.prototype.totemporalinstant |