getSeconds

種類メソッド
書式 Dateオブジェクト.getSeconds()
解説
秒を返します。
サンプルコード
dateObj = new Date();
n = dateObj.getSeconds();
outputs[0] = n;
実際のスクリプトをダウンロード