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