[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
- classList
- Geolocation
- innerText
- e.preventDefault()
- react
- getCurrentPosition
- setitem
- Let
- Navigator
- removeitem
- localStorage
- const
- setinterval
- console.log
- createElement
- 얕은복사
- var
- new Date()
- 스코프
- useState
- 깊은복사
- getitem
- Return
- Hook
- padStart
- setTimeout
- 브라우저 저장소
- 호이스팅
- 데드락
- 교착상태
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함