Documentación offline JavaScript main

Temporal.PlainDate.prototype.until()

main Documentación oficial Licencia CC-BY-SA-2.5Descargado el 2026-08-02

En esta página

The until() method of {{jsxref("Temporal.PlainDate")}} instances returns a new {{jsxref("Temporal.Duration")}} object representing the duration from this date to another date (in a form convertible by {{jsxref("Temporal/PlainDate/from", "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 {{jsxref("Temporal/PlainDate/since", "since()")}} method.

Syntax#

until(other)
until(other, options)

Parameters#

  • other
  • : A string, an object, or a {{jsxref("Temporal.PlainDate")}} instance representing a date to subtract this date from. It is converted to a Temporal.PlainDate object using the same algorithm as {{jsxref("Temporal/PlainDate/from", "Temporal.PlainDate.from()")}}. It must have the same calendar as this.
  • options {{optional_inline}}
  • : The same options as since().

Return value#

A new {{jsxref("Temporal.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#

  • {{jsxref("RangeError")}}
  • : Thrown in one of the following cases:
    • other has a different calendar than this.
    • Any of the options is invalid.

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#

{{Specifications}}

Browser compatibility#

{{Compat}}

See also#

  • {{jsxref("Temporal.PlainDate")}}
  • {{jsxref("Temporal.Duration")}}
  • {{jsxref("Temporal/PlainDate/add", "Temporal.PlainDate.prototype.add()")}}
  • {{jsxref("Temporal/PlainDate/subtract", "Temporal.PlainDate.prototype.subtract()")}}
  • {{jsxref("Temporal/PlainDate/since", "Temporal.PlainDate.prototype.since()")}}