new Date ๊ฐ์ฒด

ํ˜„์žฌ์‹œ๊ฐ„์„ ๋ธŒ๋ผ์šฐ์ €์— ๋‚˜ํƒ€๋‚ด๋Š” ์ฝ”๋“œ์ž…๋‹ˆ๋‹ค. 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; ์‹คํ–‰๋˜๋Š” ํ™”๋ฉด์ž…๋‹ˆ๋‹ค. ์ƒˆ๋กœ๊ณ ์นจ์„ ๋ˆ„๋ฅด๋ฉด ์ดˆ๊ฐ€ ๊ณ„์† ๋‹ฌ๋ผ์ง‘๋‹ˆ๋‹ค.
becky(์ง€์€)
'new Date ๊ฐ์ฒด' ํƒœ๊ทธ์˜ ๊ธ€ ๋ชฉ๋ก