1、描述
此方法使用通用时间约定将日期转换为字符串。
2、语法
它的语法如下:
date.toUTCString()
3、返回值
使用通用时间约定将日期转换为字符串。
4、使用示例
<html>
<head>
<title>JavaScript toUTCString Method</title>
</head>
<body>
<script type = "text/javascript">
var dateobject = new Date(1989, 6, 11, 14, 11, 7);
document.write( dateobject.toUTCString() );
</script>
</body>
</html>
5、输出
Tue, 11 Jul 1989 05:11:07 GMT