Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Date.prototype.getFullYear()

Esta traducción está incompleta. Por favor, ayuda a traducir este artículo del inglés.

El método getFullYear() devuelve el año del objeto de fecha especificado acorde al tiempo local.

Es prefererible usar este método en sustitución del método getYear().

Sintaxis

dateObj.getFullYear()

Parámetros

Ninguno.

Devuelve

El valor devuelto por getFullYear() es un número absolute. Para fechas entre los años 1000 y 9999, getFullYear() devuelve un número de cuatro cifras, por ejemplo, 1995. Use esta función para obtener un año que cumpla con el efecto del año 2000.

Ejemplos

Usando getFullYear()

El siguiente ejemplo asigna un valor de cuatro digitos con el año actual a la variable year.

var today = new Date();
var year = today.getFullYear();

Especificaciones

Especificaciones Estado Comentario
ECMAScript 1st Edition (ECMA-262) Standard Definición inicial. Implementado en JavaScript 1.3.
ECMAScript 5.1 (ECMA-262)
The definition of 'Date.prototype.getFullYear' in that specification.
Standard  
ECMAScript 2015 (6th Edition, ECMA-262)
The definition of 'Date.prototype.getFullYear' in that specification.
Standard  
ECMAScript 2016 Draft (7th Edition, ECMA-262)
The definition of 'Date.prototype.getFullYear' in that specification.
Draft  

Compatibilidad en navegadores

Característica Chrome Firefox (Gecko) Internet Explorer Opera Safari
Soporte básico (Yes) (Yes) (Yes) (Yes) (Yes)
Característica Android Chrome para Android Firefox para móvil (Gecko) IE para móvil Opera para móvil Safari para móvil
Soporte básico (Yes) (Yes) (Yes) (Yes) (Yes) (Yes)

Vea también

Etiquetas y colaboradores del documento

 Colaboradores en esta página: Guitxo
 Última actualización por: Guitxo,