다양한 오늘의 날짜를 출력하는 방법 중에서
20211122 의 포맷을 출력하는 방법
함수로 선언하기
function getTodayDate () {
const todayDate = new Date()
const year = todayDate.getFullYear()
const months = todayDate.getMonth()+1
const days = todayDate.getDate()
const resultDate = year + '' + months + '' + days
return resultDate
}
// resultDate의 값이 반환됩니다.
getTodayDate()
그냥 선언하기
const todayDate = new Date()
const year = todayDate.getFullYear()
const months = todayDate.getMonth()+1
const days = todayDate.getDate()
const resultDate = year + '' + months + '' + days
//아래 결과 : 20211122
console.log(resultDate)
댓글 영역