Temporal.PlainDate.prototype.toPlainYearMonth()

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

Experimentell: Dies ist eine experimentelle Technologie
Überprüfen Sie die Browser-Kompatibilitätstabelle sorgfältig vor der Verwendung auf produktiven Webseiten.

Die toPlainYearMonth() Methode von Temporal.PlainDate Instanzen gibt ein neues Temporal.PlainYearMonth Objekt zurück, das das year und month dieses Datums im gleichen Kalendersystem darstellt.

Syntax

js
toPlainYearMonth()

Parameter

Keine.

Rückgabewert

Ein neues Temporal.PlainYearMonth Objekt, das das year und month dieses Datums im gleichen Kalendersystem darstellt.

Beispiele

Verwendung von toPlainYearMonth()

js
const date = Temporal.PlainDate.from("2021-07-01");
const yearMonth = date.toPlainYearMonth();
console.log(yearMonth.toString()); // 2021-07

Spezifikationen

Specification
Temporal proposal
# sec-temporal.plaindate.prototype.toplainyearmonth

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch