Resum
El mètode getUTCFullYear()
retorna l'any de la data especificada, segons el temps universal.
Sintaxi
dateObj.getUTCFullYear()
Paràmetres
Cap.
Retorn
El valor retornat per getUTCFullYear()
és un nombre absolut que compleix amb any-2000, per exemple, 1995.
Exemples
Exemple: Utilitzar getUTCFullYear()
L'exemple següent assigna el valor de 4 dígits de l'any actual a la variable any
.
var avui = new Date(); var any = avui.getUTCFullYear();
Especificacions
Especificació | Estat | Comentaris |
---|---|---|
ECMAScript 1a Edició. | Standard | Definició inicial. Implementat a JavaScript 1.3. |
ECMAScript 5.1 (ECMA-262) The definition of 'Date.prototype.getUTCFullYear' in that specification. |
Standard | |
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'Date.prototype.getUTCFullYear' in that specification. |
Standard |
Compatibilitat amb navegadors
Característica | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Suport bàsic | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Característica | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Suport bàsic | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |