Temporal.PlainDateTime.prototype.until()
En esta página
The until() method of {{jsxref("Temporal.PlainDateTime")}} instances returns a new {{jsxref("Temporal.Duration")}} object representing the duration from this date-time to another date-time (in a form convertible by {{jsxref("Temporal/PlainDateTime/from", "Temporal.PlainDateTime.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 {{jsxref("Temporal/PlainDateTime/since", "since()")}} method.
Syntax#
until(other)
until(other, options)
Parameters#
other- : A string, an object, or a {{jsxref("Temporal.PlainDateTime")}} instance representing a date-time to subtract this date-time from. It is converted to a
Temporal.PlainDateTimeobject using the same algorithm as {{jsxref("Temporal/PlainDateTime/from", "Temporal.PlainDateTime.from()")}}. It must have the same calendar asthis. options{{optional_inline}}- : The same options as
since().
Return value#
A new {{jsxref("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#
- {{jsxref("RangeError")}}
- : Thrown in one of the following cases:
otherhas a different calendar thanthis.- Any of the options is invalid.
Examples#
Using until()#
let nextBilling = Temporal.PlainDateTime.from({
year: Temporal.Now.plainDateISO().year,
month: 4,
day: 1,
});
const now = Temporal.Now.plainDateTimeISO().round("second");
if (Temporal.PlainDateTime.compare(nextBilling, now) < 0) {
nextBilling = nextBilling.add({ years: 1 });
}
const duration = now.until(nextBilling);
console.log(`${duration.toLocaleString("en-US")} until next billing`);
For more examples, see since().
Specifications#
{{Specifications}}
Browser compatibility#
{{Compat}}
See also#
- {{jsxref("Temporal.PlainDateTime")}}
- {{jsxref("Temporal.Duration")}}
- {{jsxref("Temporal/PlainDateTime/add", "Temporal.PlainDateTime.prototype.add()")}}
- {{jsxref("Temporal/PlainDateTime/subtract", "Temporal.PlainDateTime.prototype.subtract()")}}
- {{jsxref("Temporal/PlainDateTime/since", "Temporal.PlainDateTime.prototype.since()")}}