aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/javascript/referencia/objetos_globales/date/getfullyear/index.html
blob: 0d047fbbc36a8efd5a55fd6d78315ccca2661759 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
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>