JavaScript Date getSeconds()
getSeconds() 方法用來取得一個 Date 物件的秒數,時區是本地時間 (local time)。
語法:
dateObj.getSeconds()
用法:
var date = new Date(2016, 8, 10, 18, 30, 55);
// 輸出 55
console.log(date.getSeconds());
getSeconds() 方法用來取得一個 Date 物件的秒數,時區是本地時間 (local time)。
語法:
dateObj.getSeconds()
用法:
var date = new Date(2016, 8, 10, 18, 30, 55);
// 輸出 55
console.log(date.getSeconds());