Temporal.PlainDateTime.prototype.daysInYear
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 daysInYear
Accessor-Eigenschaft von Temporal.PlainDateTime
Instanzen gibt eine positive ganze Zahl zurück, die die Anzahl der Tage im Jahr dieses Datums darstellt. Sie ist kalenderabhängig (calendar).
Der Set-Accessor von daysInYear
ist undefined
. Sie können diese Eigenschaft nicht direkt ändern.
Für allgemeine Informationen und weitere Beispiele siehe Temporal.PlainDate.prototype.daysInYear
.
Beispiele
Verwendung von daysInYear
const dt = Temporal.PlainDateTime.from("2021-07-01");
console.log(dt.daysInYear); // 365
Spezifikationen
Specification |
---|
Temporal # sec-get-temporal.plaindatetime.prototype.daysinyear |
Browser-Kompatibilität
Siehe auch
Temporal.PlainDateTime
Temporal.PlainDateTime.prototype.with()
Temporal.PlainDateTime.prototype.add()
Temporal.PlainDateTime.prototype.subtract()
Temporal.PlainDateTime.prototype.year
Temporal.PlainDateTime.prototype.dayOfYear
Temporal.PlainDateTime.prototype.daysInMonth
Temporal.PlainDateTime.prototype.daysInWeek
Temporal.PlainDate.prototype.daysInYear