Movatterモバイル変換


[0]ホーム

URL:


MDN Web Docs

Date.prototype.toUTCString()

BaselineWidely available

ThetoUTCString() method ofDate instances returns a string representing this date in theRFC 7231 format, with negative years allowed. The timezone is always UTC.toGMTString() is an alias of this method.

Try it

const event = new Date("14 Jun 2017 00:00:00 PDT");console.log(event.toUTCString());// Expected output: "Wed, 14 Jun 2017 07:00:00 GMT"

Syntax

js
toUTCString()

Parameters

None.

Return value

A string representing the given date using the UTC time zone (see description for the format). Returns"Invalid Date" if the date isinvalid.

Description

The value returned bytoUTCString() is a string in the formWww, dd Mmm yyyy HH:mm:ss GMT, where:

Format StringDescription
WwwDay of week, as three letters (e.g.,Sun,Mon)
ddDay of month, as two digits with leading zero if required
MmmMonth, as three letters (e.g.,Jan,Feb)
yyyyYear, as four or more digits with leading zeroes if required
HHHour, as two digits with leading zero if required
mmMinute, as two digits with leading zero if required
ssSeconds, as two digits with leading zero if required

Aliasing

JavaScript'sDate API was inspired by Java'sjava.util.Date library (while the latter had become de facto legacy since Java 1.1 in 1997). In particular, the JavaDate class had a method calledtoGMTString — which was poorly named, because theGreenwich Mean Time is not equivalent to theCoordinated Universal Time, while JavaScript dates always operate by UTC time. For web compatibility reasons,toGMTString remains as an alias totoUTCString, and they refer to the exact same function object. This means:

js
Date.prototype.toGMTString.name === "toUTCString";

Examples

Using toUTCString()

js
const d = new Date(0);console.log(d.toUTCString()); // 'Thu, 01 Jan 1970 00:00:00 GMT'

Specifications

Specification
ECMAScript® 2026 Language Specification
# sec-date.prototype.toutcstring

Browser compatibility

See also

Help improve MDN

Learn how to contribute.

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp