Temporal.PlainDate.prototype.toPlainMonthDay()
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 toPlainMonthDay()
-Methode von Temporal.PlainDate
Instanzen gibt ein neues Temporal.PlainMonthDay
Objekt zurück, das den monthCode
und day
dieses Datums im selben Kalendersystem darstellt.
Beachten Sie, dass PlainMonthDay
-Objekte keine month
-Komponente haben, da Monate mit demselben Namen in verschiedenen Jahren aufgrund von Schaltmonaten unterschiedliche month
-Indizes haben können.
Syntax
toPlainMonthDay()
Parameter
Keine.
Rückgabewert
Beispiele
Verwendung von toPlainMonthDay()
const date = Temporal.PlainDate.from("2021-07-01");
const monthDay = date.toPlainMonthDay();
console.log(monthDay.toString()); // 07-01
Spezifikationen
Specification |
---|
Temporal proposal # sec-temporal.plaindate.prototype.toplainmonthday |
Browser-Kompatibilität
BCD tables only load in the browser