此方法使用通用時間約定一個日期轉換為字串。
文法
Date.toUTCString()
以下是參數的詳細資訊:
傳回值:
傳回轉換日期為字串,使用通用的時間約定。
範例:
<html> <head> <title>JavaScript toUTCString Method</title> </head> <body> <script type="text/javascript"> var dateobject = new Date(1993, 6, 28, 14, 39, 7); document.write( dateobject.toUTCString() ); </script> </body> </html>
這將產生以下結果:
Wed, 28 Jul 1993 09:09:07 UTC