[JS] 현재시간 불러오기
지금부터 new Date()를 사용하여 시간을 불러올 것이다. const clock = document.querySelector("#clock"); function getClock() { const date = new Date(); const hours = String(date.getHours()).padStart(2, "0"); const minutes = String(date.getMinutes()).padStart(2, "0"); const seconds = String(date.getSeconds()).padStart(2, "0"); clock.innerText = `${hours}:${minutes}:${seconds}`; } getClock(); setInterval(getClock, 1000..
개발공부/JS
2023. 6. 22. 12:07
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Geolocation
- 스코프
- const
- setitem
- Navigator
- console.log
- 교착상태
- Let
- getCurrentPosition
- removeitem
- var
- setTimeout
- Hook
- 호이스팅
- e.preventDefault()
- new Date()
- padStart
- Return
- localStorage
- react
- 얕은복사
- innerText
- classList
- getitem
- setinterval
- 데드락
- 브라우저 저장소
- 깊은복사
- createElement
- useState
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함