This feature is not Baseline because it does not work in some of the most widely-used browsers.
The Temporal.Instant.fromEpochMilliseconds() static method creates a new Temporal.Instant object from the number of milliseconds since the Unix epoch (midnight at the beginning of January 1, 1970, UTC).
To convert a Date object to a Temporal.Instant object, use Date.prototype.toTemporalInstant() instead.
Temporal.Instant.fromEpochMilliseconds(epochMilliseconds)
epochMillisecondsA number representing the number of milliseconds since the Unix epoch. Internally, it is converted to a BigInt and multiplied by 1e6 to get the number of nanoseconds.
A new Temporal.Instant object representing the instant in time specified by epochMilliseconds.
RangeErrorThrown in one of the following cases:
epochMilliseconds cannot be converted to a BigInt (e.g., not an integer).epochMilliseconds is not in the representable range, which is ±108 days, or about ±273,972.6 years, from the Unix epoch.const instant = Temporal.Instant.fromEpochMilliseconds(0); console.log(instant.toString()); // 1970-01-01T00:00:00Z const vostok1Liftoff = Temporal.Instant.fromEpochMilliseconds(-275248380000); console.log(vostok1Liftoff.toString()); // 1961-04-12T06:07:00Z const sts1Liftoff = Temporal.Instant.fromEpochMilliseconds(355924804000); console.log(sts1Liftoff.toString()); // 1981-04-12T12:00:04Z
| Specification |
|---|
| Temporal> # sec-temporal.instant.fromepochmilliseconds> |
| Desktop | Mobile | Server | |||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | Bun | Deno | Node.js | |
fromEpochMilliseconds |
144 | 144 | 139 | No | preview | 144 | 139 | No | No | No | 144 | No | ? | 1.40 | No |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Temporal/Instant/fromEpochMilliseconds