From a5fcfafb665e96cae5d04dfba927db8dcdfd7f14 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Sun, 13 Dec 2020 17:16:08 -0500 Subject: 2020-12-13 --- .../objetos_globales/date/getfullyear/index.html | 107 +++++---------------- 1 file changed, 25 insertions(+), 82 deletions(-) (limited to 'files/es/web/javascript/referencia/objetos_globales/date') diff --git a/files/es/web/javascript/referencia/objetos_globales/date/getfullyear/index.html b/files/es/web/javascript/referencia/objetos_globales/date/getfullyear/index.html index be63745dbd..0d047fbbc3 100644 --- a/files/es/web/javascript/referencia/objetos_globales/date/getfullyear/index.html +++ b/files/es/web/javascript/referencia/objetos_globales/date/getfullyear/index.html @@ -1,121 +1,64 @@ --- title: Date.prototype.getFullYear() slug: Web/JavaScript/Referencia/Objetos_globales/Date/getFullYear +tags: + - Fecha + - JavaScript + - Prototipo + - Referencia + - metodo translation_of: Web/JavaScript/Reference/Global_Objects/Date/getFullYear ---
{{JSRef}}
-

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

+

El método getFullYear() devuelve el año de la fecha indicada acorde a la hora local.

-

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

+

Usa este método en lugar del método {{jsxref("Date.prototype.getYear()", "getYear()")}}.

+ +
{{EmbedInteractiveExample("pages/js/date-getfullyear.html","shorter")}}

Sintaxis

-
dateObj.getFullYear()
+
dateObj.getFullYear()
-

Parámetros

+

Valor devuelto

-

Ninguno.

+

Un número correspondiente al año de la fecha indicada, según la hora local.

-

Devuelve

+

Descripción

-

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.

+

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

Ejemplos

-

Usando getFullYear()

+

Utilizando getFullYear()

-

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

+

El siguiente ejemplo asigna el valor de cuatro dígitos del año actual a la variable year.

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

Especificaciones

- - - - - - + - - - - - - - - - - - - - + + + - -
EspecificacionesEstadoComentario
{{SpecName('ES1')}}{{Spec2('ES1')}}Definición inicial. Implementado en JavaScript 1.3.
{{SpecName('ES5.1', '#sec-15.9.5.10', 'Date.prototype.getFullYear')}}{{Spec2('ES5.1')}}
{{SpecName('ES6', '#sec-date.prototype.getfullyear', 'Date.prototype.getFullYear')}}{{Spec2('ES6')}}Especificación
{{SpecName('ESDraft', '#sec-date.prototype.getfullyear', 'Date.prototype.getFullYear')}}{{Spec2('ESDraft')}}
-

Compatibilidad en navegadores

- -
{{CompatibilityTable}}
+

Compatibilidad con navegadores

-
- - - - - - - - - - - - - - - - - - - -
CaracterísticaChromeFirefox (Gecko)Internet ExplorerOperaSafari
Soporte básico{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}
-
- -
- - - - - - - - - - - - - - - - - - - - - -
CaracterísticaAndroidChrome para AndroidFirefox para móvil (Gecko)IE para móvilOpera para móvilSafari para móvil
Soporte básico{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}
-
+

{{Compat("javascript.builtins.Date.getFullYear")}}

-

Vea también

+

Ver también