20 lines
389 B
JavaScript
20 lines
389 B
JavaScript
const clock = document.querySelector(".clock")
|
|
|
|
const tick = () => {
|
|
const now = new Date();
|
|
|
|
const h = now.getHours();
|
|
const m = now.getMinutes();
|
|
const s = now.getSeconds();
|
|
// console.log(h, m, s);
|
|
|
|
const html = `
|
|
<span>${h}</span>
|
|
<span>${m}</span>
|
|
<span>${s}</span>
|
|
`;
|
|
|
|
clock.innerHTML = html;
|
|
}
|
|
|
|
setInterval(tick, 1000); |