aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/javascript/reference/global_objects/date/toutcstring/index.html
blob: db7c4af97f123d75512194febe2368e14971b2fd (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
---
title: Date.prototype.toUTCString()
slug: Web/JavaScript/Reference/Global_Objects/Date/toUTCString
tags:
  - Date
  - JavaScript
  - Method
  - Prototype
  - Reference
  - UTC
translation_of: Web/JavaScript/Reference/Global_Objects/Date/toUTCString
original_slug: Web/JavaScript/Referencia/Objetos_globales/Date/toUTCString
---
<div>{{JSRef}}</div>

<p><code>El método</code><strong><code>toUTCString()</code></strong> convierte una fecha en una cadena, utilizando <span class="tlid-translation translation" lang="es"><span title="">la zona horaria UTC.</span></span></p>

<div>{{EmbedInteractiveExample("pages/js/date-toutcstring.html")}}</div>



<h2 id="Sintaxis">Sintaxis</h2>

<pre class="syntaxbox"><code><var>dateObj</var>.toUTCString()</code></pre>

<h3 id="Valor_de_retorno">Valor de retorno</h3>

<p>Una cadena que representa la fecha dada usando la zona horaria UTC</p>

<h2 id="Descripción">Descripción</h2>

<p>El valor devuelto por <code>toUTCString()</code> es una cadena con la forma</p>

<p><code>Www, dd Mmm yyyy hh:mm:ss GMT</code></p>

<p>donde:</p>

<table class="standard-table">
 <tbody>
  <tr>
   <td>Www</td>
   <td>Día de la semana, como tres letras (ej. Sun, Mon, ...)</td>
  </tr>
  <tr>
   <td>dd</td>
   <td>Día del mes, como dos dígitos, con cero a la izquierda si es necesario.</td>
  </tr>
  <tr>
   <td>Mmm</td>
   <td>Mes, como tres letras (ej. Jan, Feb, ...)</td>
  </tr>
  <tr>
   <td>yyyy</td>
   <td>Año, como cuatro o más dígitos con cero a la izquierda si es necesario.</td>
  </tr>
  <tr>
   <td>hh</td>
   <td>Hora, como dos dígitos con cero a la izquierda si es necesario.</td>
  </tr>
  <tr>
   <td>mm</td>
   <td>Minutos, como dos dígitos con cero a la izquierda si es necesario.</td>
  </tr>
  <tr>
   <td>ss</td>
   <td>Segundos, como dos dígitos con cero a la izquierda si es necesario.</td>
  </tr>
 </tbody>
</table>

<p>Antes de ECMAScript 2018, el formato del valor devuelto variaba según la plataforma. El valor devuelto más comun era un sello de fecha con formato RFC-1123, que es una versión ligeramente actualizada de los sellos de fecha RFC-822.</p>

<h2 id="Ejemplos">Ejemplos</h2>

<h3 id="Usando_toUTCString">Usando <code>toUTCString()</code></h3>

<pre class="brush: js">var today = new Date('Wed, 14 Jun 2017 00:00:00 PDT');
var UTCstring = today.toUTCString(); // Wed, 14 Jun 2017 07:00:00 GMT
</pre>

<h2 id="Especificaciones">Especificaciones</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Especificación</th>
  </tr>
  <tr>
   <td>{{SpecName('ESDraft', '#sec-date.prototype.toutcstring', 'Date.prototype.toUTCString')}}</td>
  </tr>
 </tbody>
</table>

<h2 id="Compatibilidad_del_navegador">Compatibilidad del navegador</h2>

<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>

<p>{{Compat("javascript.builtins.Date.toUTCString")}}</p>

<h2 id="Ver_también">Ver también</h2>

<ul>
 <li>{{jsxref("Date.prototype.toLocaleString()")}}</li>
 <li>{{jsxref("Date.prototype.toDateString()")}}</li>
 <li>{{jsxref("Date.prototype.toISOString()")}}</li>
</ul>