Date.prototype.toUTCString()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
toUTCString()
メソッドは、協定世界時 (UTC) のタイムゾーンに基づき、日付を文字列へ変換します。
rfc7231 と ECMA-262 toUTCString の改訂に基づくと、負の数が可能です。
試してみましょう
構文
js
toUTCString()
返値
UTC タイムゾーンに基づき、与えられた日付を表す文字列。
解説
toUTCString()
から返される文字列は、 Www, dd Mmm yyyy hh:mm:ss GMT
の形の文字列です。
書式文字列 | 説明 |
---|---|
Www |
曜日、3 文字で表す (例 Sun, Mon, ...) |
dd |
日、必要に応じて先頭に 0 が付いた 2 桁の数字で表す |
Mmm |
月、3 文字で表す (例 Jan, Feb, ...) |
yyyy |
年、必要に応じて先頭に 0 が付いた 4 桁以上の数字で表す |
hh |
時、必要に応じて先頭に 0 が付いた 2 桁の数字で表す |
mm |
分、必要に応じて先頭に 0 が付いた 2 桁の数字で表す |
ss |
秒、必要に応じて先頭に 0 が付いた 2 桁の数字で表す |
例
toUTCString() の使用
js
const today = new Date("Wed, 14 Jun 2017 00:00:00 PDT");
const UTCstring = today.toUTCString(); // Wed, 14 Jun 2017 07:00:00 GMT
仕様書
Specification |
---|
ECMAScript Language Specification # sec-date.prototype.toutcstring |
ブラウザーの互換性
BCD tables only load in the browser