javascript instance method
Temporal.PlainDate.prototype.until()
The until() method of PlainDate instances returns a new Duration object representing the duration from this date to another date (in a form convertible by Temporal.PlainDate.from()). The duration is positive if the other date is after this date, 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
PlainDateinstance representing a date to subtract this date from. It is converted to aTemporal.PlainDateobject using the same algorithm asTemporal.PlainDate.from(). It must have the same calendar asthis.
- : A string, an object, or a
optionsOptional- : The same options as
since().
- : The same options as
Return value
A new Duration object representing the duration from this date until other. The duration is positive if other is after this date, and negative if before.
Exceptions
RangeError- : Thrown in one of the following cases:
otherhas a different calendar thanthis.- Any of the options is invalid.
- : Thrown in one of the following cases:
Examples
Using until()
const launch = Temporal.PlainDate.from("2035-01-01");
const now = Temporal.Now.plainDateISO();
const duration = now.until(launch);
console.log(`It will be ${duration.toLocaleString("en-US")} until the launch`);
For more examples, see since().
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.