Temporal.PlainDateTime.prototype.daysInMonth
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 daysInMonth
Zugriffs-Eigenschaft von Temporal.PlainDateTime
Instanzen gibt eine positive ganze Zahl zurück, die die Anzahl der Tage im Monat dieses Datums darstellt. Sie ist von dem Kalender abhängig.
Der Set-Zugriff von daysInMonth
ist undefined
. Sie können diese Eigenschaft nicht direkt ändern.
Für allgemeine Informationen und weitere Beispiele siehe Temporal.PlainDate.prototype.daysInMonth
.
Beispiele
Verwendung von daysInMonth
const dt = Temporal.PlainDateTime.from("2021-07-01");
console.log(dt.daysInMonth); // 31
Spezifikationen
Specification |
---|
Temporal proposal # sec-get-temporal.plaindatetime.prototype.daysinmonth |
Browser-Kompatibilität
BCD tables only load in the browser
Siehe auch
Temporal.PlainDateTime
Temporal.PlainDateTime.prototype.with()
Temporal.PlainDateTime.prototype.add()
Temporal.PlainDateTime.prototype.subtract()
Temporal.PlainDateTime.prototype.year
Temporal.PlainDateTime.prototype.month
Temporal.PlainDateTime.prototype.day
Temporal.PlainDateTime.prototype.daysInWeek
Temporal.PlainDateTime.prototype.daysInYear
Temporal.PlainDate.prototype.daysInMonth