- PadStart : 문자열 길이를 정해진 수로 조정해줌, String을 현재보다 길게 만들어야 할 때 사용
function getClock() {
const date = new Date();
const hours = String(date.getHours()).padStart(2,0); //문자열로 변환 후,
const minutes = String(date.getMinutes()).padStart(2,0);//문자열을 2개로 맞춰주고 문자열이 2보다 작다면 앞에 0붙임
const seconds = String(date.getSeconds()).padStart(2,0);
clock.innerText = `${hours}:${minutes}:${seconds}`;
}
'JavaScript' 카테고리의 다른 글
#6.1 Background (0) | 2023.02.13 |
---|---|
#6.0 Quotes (0) | 2023.02.13 |
#5.1 Timeouts and Dates (0) | 2023.02.10 |
#5.0 Intervals (0) | 2023.02.10 |
#4.6 Loading Username (0) | 2023.02.10 |