js動態時間

鱼鱼不让我编程發表於2024-07-06

// 動態列印當前時間
function getTime() {
const now = new Date()
const hours = now.getHours().toString().padStart(2, '0')
const minutes = now.getMinutes().toString().padStart(2, '0')
const seconds = now.getSeconds().toString().padStart(2, '0')
console.log(hours + ':' + minutes + ':' + seconds);
}
setInterval(getTime, 1000)

相關文章