This feature is not Baseline because it does not work in some of the most widely-used browsers.
The valueOf() method of Temporal.Instant instances throws a TypeError, which prevents Temporal.Instant instances from being implicitly converted to primitives when used in arithmetic or comparison operations.
valueOf()
None.
None.
TypeErrorAlways thrown.
Because both primitive conversion and number conversion call valueOf() before toString(), if valueOf() is absent, then an expression like instant1 > instant2 would implicitly compare them as strings, which may have unexpected results. By throwing a TypeError, Temporal.Instant instances prevent such implicit conversions. You need to explicitly convert them to numbers using Temporal.Instant.prototype.epochNanoseconds, or use the Temporal.Instant.compare() static method to compare them.
All arithmetic and comparison operations on Temporal.Instant instances should use the dedicated methods or convert them to primitives explicitly.
const instant1 = Temporal.Instant.fromEpochMilliseconds(0); const instant2 = Temporal.Instant.fromEpochMilliseconds(1000); instant1 > instant2; // TypeError: can't convert Instant to primitive type instant1.epochNanoseconds > instant2.epochNanoseconds; // false Temporal.Instant.compare(instant1, instant2); // -1 instant2 - instant1; // TypeError: can't convert Instant to primitive type instant2.since(instant1).toString(); // "PT1S"
| Specification |
|---|
| Temporal> # sec-temporal.instant.prototype.valueof> |
| 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 | |
valueOf |
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/valueOf