만족스러운 개발/일기 끄적끄적
day16
재봉팔
2021. 6. 10. 11:30
21년 6월 10일
시계
const clock = document.querySelector("h2#clock");
function getClock() {
const date = new Date();
clock.innerText = (`${date.getHours()}:${date.getMinutes()}:${date.getSeconds()}`);
}
getClock();
setInterval(getClock,1000);