toUTCString メソッド
日付を世界協定時刻 (UTC) の文字列に変換します。
function toUTCString() : String
解説
toUTCString メソッドは、世界協定時刻 (UTC) を表す String オブジェクトを返します。
使用例
toUTCString メソッドの使用例を次に示します。
var dtFirst = new Date();
dtFirst.setUTCFullYear(2007);
var dtSecond = new Date();
// 10 is the value for November.
dtSecond.setUTCFullYear(2008, 10, 3);
print (dtFirst.toUTCString());
print (dtSecond.toUTCString());