diff options
author | Florian Merz <me@fiji-flo.de> | 2021-02-11 14:46:50 +0100 |
---|---|---|
committer | Florian Merz <me@fiji-flo.de> | 2021-02-11 14:46:50 +0100 |
commit | a55b575e8089ee6cab7c5c262a7e6db55d0e34d6 (patch) | |
tree | 5032e6779a402a863654c9d65965073f09ea4182 /files/es/web/javascript/referencia/objetos_globales/date/getfullyear/index.html | |
parent | 8260a606c143e6b55a467edf017a56bdcd6cba7e (diff) | |
download | translated-content-a55b575e8089ee6cab7c5c262a7e6db55d0e34d6.tar.gz translated-content-a55b575e8089ee6cab7c5c262a7e6db55d0e34d6.tar.bz2 translated-content-a55b575e8089ee6cab7c5c262a7e6db55d0e34d6.zip |
unslug es: move
Diffstat (limited to 'files/es/web/javascript/referencia/objetos_globales/date/getfullyear/index.html')
-rw-r--r-- | files/es/web/javascript/referencia/objetos_globales/date/getfullyear/index.html | 67 |
1 files changed, 0 insertions, 67 deletions
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 deleted file mode 100644 index 0d047fbbc3..0000000000 --- a/files/es/web/javascript/referencia/objetos_globales/date/getfullyear/index.html +++ /dev/null @@ -1,67 +0,0 @@ ---- -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 ---- -<div>{{JSRef}}</div> - -<p>El método <strong><code>getFullYear()</code></strong> devuelve el año de la fecha indicada acorde a la hora local.</p> - -<p>Usa este método en lugar del método {{jsxref("Date.prototype.getYear()", "getYear()")}}.</p> - -<div>{{EmbedInteractiveExample("pages/js/date-getfullyear.html","shorter")}}</div> - -<h2 id="Sintaxis">Sintaxis</h2> - -<pre class="syntaxbox notranslate"><var>dateObj</var>.getFullYear()</pre> - -<h3 id="Valor_devuelto">Valor devuelto</h3> - -<p>Un número correspondiente al año de la fecha indicada, según la hora local.</p> - -<h2 id="Descripción">Descripción</h2> - -<p>El valor devuelto por <code>getFullYear()</code> es un número absoluto. Para fechas entre los años 1000 y 9999, <code>getFullYear()</code> 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.</p> - -<h2 id="Ejemplos">Ejemplos</h2> - -<h3 id="Utilizando_getFullYear">Utilizando getFullYear()</h3> - -<p>El siguiente ejemplo asigna el valor de cuatro dígitos del año actual a la variable <code>year</code>.</p> - -<pre class="brush: js notranslate">var today = new Date(); -var year = today.getFullYear(); -</pre> - -<h2 id="Especificaciones">Especificaciones</h2> - -<table class="standard-table"> - <thead> - <tr> - <th scope="col">Especificación</th> - </tr> - </thead> - <tbody> - <tr> - <td>{{SpecName('ESDraft', '#sec-date.prototype.getfullyear', 'Date.prototype.getFullYear')}}</td> - </tr> - </tbody> -</table> - -<h2 id="Compatibilidad_con_navegadores">Compatibilidad con navegadores</h2> - -<p>{{Compat("javascript.builtins.Date.getFullYear")}}</p> - -<h2 id="Ver_también">Ver también</h2> - -<ul> - <li>{{jsxref("Date.prototype.getUTCFullYear()")}}</li> - <li>{{jsxref("Date.prototype.setFullYear()")}}</li> - <li>{{jsxref("Date.prototype.getYear()")}}</li> -</ul> |