Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Date.prototype.toUTCString()

toUTCString() メソッドは、協定世界時 (UTC) のタイムゾーンに基づき、日付を文字列へ変換します。

構文

dateObj.toUTCString()

戻り値

UTC タイムゾーンに基づき、与えられた日付を表す文字列。

説明

toUTCString() により返される値は、UTC タイムゾーンの人間が読める形式の文字列です。戻り値の形式は、プラットフォームにより異なります。共通の戻り値の値は、RFC-822 日付スタンプのバージョンからわずかに更新された、RFC-1123 形式の日付スタンプです。

toUTCString() を使う

var today = new Date();
var UTCstring = today.toUTCString();
// Mon, 03 Jul 2006 21:44:38 GMT

仕様

仕様書 策定状況 備考
ECMAScript 1st Edition (ECMA-262) 標準 初期定義。JavaScript 1.3 で実装。
ECMAScript 5.1 (ECMA-262)
Date.prototype.toUTCString の定義
標準
ECMAScript 2015 (6th Edition, ECMA-262)
Date.prototype.toUTCString の定義
標準
ECMAScript 2017 Draft (ECMA-262)
Date.prototype.toUTCString の定義
ドラフト

ブラウザの実装状況

機能 Chrome Firefox (Gecko) Internet Explorer Opera Safari
基本サポート (有) (有) (有) (有) (有)
機能 Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
基本サポート (有) (有) (有) (有) (有) (有)

関連情報

ドキュメントのタグと貢献者

 このページの貢献者: Marsf, shide55
 最終更新者: Marsf,