Temporal.ZonedDateTime.prototype.until()
Baseline Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
The until() method of Temporal.ZonedDateTime instances returns a new Temporal.Duration object representing the duration from this date-time to another date-time (in a form convertible by Temporal.ZonedDateTime.from()). The duration is positive if the other date-time is after this date-time, and negative if before.
This method does other - this. To do this - other, use the since() method.
Syntax
until(other) until(other, options)
Parameters
-
other - A string, an object, or a
Temporal.ZonedDateTimeinstance representing a date-time to subtract this date-time from. It is converted to aTemporal.ZonedDateTimeobject using the same algorithm asTemporal.ZonedDateTime.from(). It must have the same calendar asthis. -
optionsOptional - The same options as
since().
Return value
A new Temporal.Duration object representing the duration from this date-time until other. The duration is positive if other is after this date-time, and negative if before.
Exceptions
-
RangeError - Thrown in one of the following cases:
-
otherhas a different calendar thanthis. - Any of the options is invalid.
-
otherhas a different time zone thanthis, andlargestUnitis"days"or above.
-
Examples
Using until()
const flight = Temporal.ZonedDateTime.from(
"2024-12-21T13:31:00-05:00[America/New_York]",
);
const now = Temporal.Now.zonedDateTimeISO("America/New_York").round("second");
if (Temporal.ZonedDateTime.compare(flight, now) < 0) {
console.error(
"The flight is already in the past. The result may not make sense.",
);
}
const duration = now.until(flight, { largestUnit: "days" });
console.log(`The flight is in ${duration.toLocaleString("en-US")}`);
For more examples, see since().
Specifications
| Specification |
|---|
| Temporal # sec-temporal.zoneddatetime.prototype.until |
Browser compatibility
| 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 | |
until |
144 |
144 |
139 |
128 |
preview |
144 |
139 |
95 |
No |
No |
144 |
No |
1.4.0 |
2.7 |
26.0.0 |
See also
Temporal.ZonedDateTimeTemporal.DurationTemporal.ZonedDateTime.prototype.add()Temporal.ZonedDateTime.prototype.subtract()Temporal.ZonedDateTime.prototype.since()
© 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/ZonedDateTime/until