본문 바로가기
개발공부_Blog/JavaScript

Date객체 2 - 시간, 분, 초

by 소팡팡 2022. 1. 15.

getTime함수를 만들어 현재시간을 뜨게 했다

시계를 만들어봄, setInterval은 나중에 ㅋ 

function timeAMPM(){
  const today = new Date().getHours
    if (today < 12){
      AMPM.textContent = 'am'
    } else {
      AMPM.textContent = 'pm'
    }  
}
timeAMPM()


function getTime(){
  const date = new Date()
  const hours = String(date.getHours()).padStart(2,'0')
  const minutes = String(date.getMinutes()).padStart(2,'0') 
  const second = String(date.getSeconds()).padStart(2,'0') 

  clock.textContent = (`${hours} : ${minutes} : ${second}`)
}
getTime()
setInterval(getTime, 1000)
// getTime함수를 1초마다 실행시킨다

 

 

댓글