요일을 만들어봄
function today(){
const date = new Date()
const year = date.getFullYear()
const month = date.getMonth()+1
const day = date.getDate()
titleDay.textContent = (`${month}월 ${day}일` )
}
today()
function weekend(){
const date = new Date()
const week = ['일요일', '월요일', '화요일', '수요일', '목요일', '금요일', '토요일']
const weekDay = week[date.getDay()]
titleWeekend.textContent = (weekDay)
}
weekend()
Date.prototype.getDate() :
Date에서 현지 시간 기준 일(1–31)을 반환합니다
Date에서 현지 시간 기준 연도(네 자리 연도면 네 자리로)를 반환합니다
Date.prototype.getMonth()
Date에서 현지 시간 기준 월(0–11)을 반환합니다
'개발공부_Blog > JavaScript' 카테고리의 다른 글
javascript _ Date() 밀리초를 날짜로 변환하기 (0) | 2022.01.18 |
---|---|
Date객체 2 - 시간, 분, 초 (0) | 2022.01.15 |
String.prototype.slice() 문자열의 일부를 새로운 문자열로 반환 (0) | 2022.01.15 |
Array.prototype.slice() 배열에서 시작과 끝을 추출하는 함수 (0) | 2022.01.15 |
.repeat() 주어진 문자열을 횟수만큼 반복해 새로운 문자열 만들기 (0) | 2022.01.15 |
댓글