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 时区。

尝试一下

语法

dateObj.toUTCString()

返回值

返回使用 UTC 时区表示给定日期的字符串

描述

toUTCString 的返回值是一个使用 UTC 时区的易读格式字符串。返回值的格式可能随平台而变化。通常返回值是一个 RFC-1123 格式的时间戳,这是一个 RFC-822 时间戳的小幅更新版。

示例

示例:使用toUTCString

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

规范

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

浏览器兼容性

BCD tables only load in the browser

参见