ํ์ฌ์๊ฐ์ ๋ธ๋ผ์ฐ์ ์ ๋ํ๋ด๋ ์ฝ๋์
๋๋ค. h1์ now ๊ฐ ๊ฐ์ง ์๊ฐ์ ๋ณด๋ฅผ ํ์ํฉ๋๋ค const h1 = document.querySelector('h1') const now = new Date(); console.log(now) const hour = now.getHours() const minu = now.getMinutes() const seco = now.getSeconds() const nowTime = `${hour}:${minu}:${seco}` h1.textContent = nowTime; ์คํ๋๋ ํ๋ฉด์
๋๋ค. ์๋ก๊ณ ์นจ์ ๋๋ฅด๋ฉด ์ด๊ฐ ๊ณ์ ๋ฌ๋ผ์ง๋๋ค.