Temporal.PlainDateTime.prototype.year
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 year
-Zugriffs-Eigenschaft von Temporal.PlainDateTime
-Instanzen gibt eine ganze Zahl zurück, die die Anzahl der Jahre dieses Datums relativ zum Beginn eines kalender-spezifischen Epoch-Jahres darstellt. Sie ist vom Kalender abhängig.
Der Set-Accessor von year
ist undefined
. Sie können diese Eigenschaft nicht direkt ändern. Verwenden Sie die Methode with()
, um ein neues Temporal.PlainDateTime
-Objekt mit dem gewünschten neuen Wert zu erstellen.
Für allgemeine Informationen und weitere Beispiele siehe Temporal.PlainDate.prototype.year
.
Beispiele
Verwendung von year
const dt = Temporal.PlainDateTime.from("2021-07-01"); // ISO 8601 calendar
console.log(dt.year); // 2021
Spezifikationen
Specification |
---|
Temporal proposal # sec-get-temporal.plaindatetime.prototype.year |
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.era
Temporal.PlainDateTime.prototype.eraYear
Temporal.PlainDateTime.prototype.yearOfWeek
Temporal.PlainDateTime.prototype.month
Temporal.PlainDateTime.prototype.day
Temporal.PlainDate.prototype.year