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