반응형
const ExceptWeekend = () => {
const today = new Date()
let yesterDay = new Date(today.setDate(today.getDate() - 1))
if (yesterDay.getDay() === 0) {
yesterDay = new Date(today.setDate(today.getDate() - 2))
} else if (yesterDay.getDay() === 6) {
yesterDay = new Date(today.setDate(today.getDate() - 1))
}
console.log('!!!', yesterDay)
}
728x90
'모바일 APP > React-Native' 카테고리의 다른 글
IOS 커스텀 폰트 적용 안될때 (0) | 2021.08.30 |
---|---|
기능 개발간 유용한 사이트 (0) | 2021.08.30 |
아이폰 시뮬레이터 command + D 안될때 (0) | 2021.08.15 |
자식 컴포넌트 -> 부모 컴포넌트 상태 변경하기 (0) | 2021.07.16 |
에러: TextInput placeholder 안될때 (2) | 2021.07.07 |