getUTCSeconds

種類メソッド
書式 Dateオブジェクト.getUTCSeconds()
解説
協定世界時の秒を返します。
サンプルコード
dObj = new Date();
alert("協定世界時の今は"+dObj.getUTCSeconds()+"秒です。");
実際のスクリプトをダウンロード