diff options
Diffstat (limited to 'files/ja/web/javascript/reference/global_objects/date/toutcstring/index.html')
-rw-r--r-- | files/ja/web/javascript/reference/global_objects/date/toutcstring/index.html | 110 |
1 files changed, 110 insertions, 0 deletions
diff --git a/files/ja/web/javascript/reference/global_objects/date/toutcstring/index.html b/files/ja/web/javascript/reference/global_objects/date/toutcstring/index.html new file mode 100644 index 0000000000..38d3f67926 --- /dev/null +++ b/files/ja/web/javascript/reference/global_objects/date/toutcstring/index.html @@ -0,0 +1,110 @@ +--- +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> + +<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div> + +<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> |