blob: 0a55cec734a152cfc5f1e97ab952e7b8f4d1e70e (
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
107
108
|
---
title: Date.prototype.toUTCString()
slug: Web/JavaScript/Reference/Global_Objects/Date/toUTCString
tags:
- Date
- JavaScript
- Method
- Prototype
- Reference
translation_of: Web/JavaScript/Reference/Global_Objects/Date/toUTCString
---
<div>{{JSRef}}</div>
<p><strong><code>toUTCString()</code></strong> メソッドは、協定世界時 (UTC) のタイムゾーンに基づき、日付を文字列へ変換します。</p>
<p><a href="https://tools.ietf.org/html/rfc7231#section-7.1.1.1">rfc7231</a> と <a href="https://www.ecma-international.org/ecma-262/10.0/index.html#sec-date.prototype.toutcstring">ecma-262 toUTCString</a> の改訂に基づき、 <a href="https://tc39.es/ecma262/#sec-date.prototype.toutcstring">2021 版</a>では負の数が可能になります。</p>
<div>{{EmbedInteractiveExample("pages/js/date-toutcstring.html","shorter")}}</div>
<div class="hidden">このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> をクローンしてプルリクエストを送信してください。</div>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox notranslate"><var>dateObj</var>.toUTCString()</pre>
<h3 id="Return_value" name="Return_value">返値</h3>
<p>UTC タイムゾーンに基づき、与えられた日付を表す文字列。</p>
<h2 id="Description" name="Description">解説</h2>
<p><code>toUTCString()</code> から返される文字列は、 <code><var>Www</var>, <var>dd</var> <var>Mmm</var> <var>yyyy</var> <var>hh</var>:<var>mm</var>:<var>ss</var> GMT</code> の形の文字列です。</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col">書式文字列</th>
<th scope="col">説明</th>
</tr>
</thead>
<tbody>
<tr>
<td><code><var>Www</var></code></td>
<td>曜日、3文字で表す (例 Sun, Mon, ...)</td>
</tr>
<tr>
<td><code><var>dd</var></code></td>
<td>日、必要に応じて先頭に0が付いた2桁の数字で表す</td>
</tr>
<tr>
<td><code><var>Mmm</var></code></td>
<td>月、3文字で表す (例 Jan, Feb, ...)</td>
</tr>
<tr>
<td><code><var>yyyy</var></code></td>
<td>年、必要に応じて先頭に0が付いた4桁以上の数字で表す</td>
</tr>
<tr>
<td><code><var>hh</var></code></td>
<td>時、必要に応じて先頭に0が付いた2桁の数字で表す</td>
</tr>
<tr>
<td><code><var>mm</var></code></td>
<td>分、必要に応じて先頭に0が付いた2桁の数字で表す</td>
</tr>
<tr>
<td><code><var>ss</var></code></td>
<td>秒、必要に応じて先頭に0が付いた2桁の数字で表す</td>
</tr>
</tbody>
</table>
<p>ECMAScript 2018 以前では、返値の書式はプラットフォームによって様々です。もっとも一般的な返値は RFC-1123 形式の日付であり、これは RFC-822 形式の日付をわずかに改訂したものでした。</p>
<h2 id="Examples" name="Examples">例</h2>
<h3 id="Using_toUTCString" name="Using_toUTCString">toUTCString() を使う</h3>
<pre class="brush: js notranslate">let today = new Date('Wed, 14 Jun 2017 00:00:00 PDT');
let UTCstring = today.toUTCString(); // Wed, 14 Jun 2017 07:00:00 GMT
</pre>
<h2 id="Specifications" name="Specifications">仕様書</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様書</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('ESDraft', '#sec-date.prototype.toutcstring', 'Date.prototype.toUTCString')}}</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("javascript.builtins.Date.toUTCString")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>{{jsxref("Date.prototype.toLocaleString()")}}</li>
<li>{{jsxref("Date.prototype.toDateString()")}}</li>
<li>{{jsxref("Date.prototype.toISOString()")}}</li>
</ul>
|