728x90
const today = new Date();
const nextMonthFirstDate = new Date(today.getFullYear(), today.getMonth() + 1, 1);
const currentMonthLastDate = new Date(nextMonthFirstDate - 1); // 1일을 빼준다
const lastDate = currentMonthLastDate.getDate(); // 원하는 마지막 날짜를 얻었다!
'Develop > JavaScript' 카테고리의 다른 글
Vanilla JS로 SPA 화면전환 구현해보기 (feat. 프레임워크는 소중하다) (0) | 2024.10.18 |
---|---|
중첩된 Promise<Promise<T>>를 조심해! (0) | 2023.01.25 |
[JavaScript] Week4 (0) | 2019.02.18 |
[JavaScript] Week2 (0) | 2019.01.28 |
[JavaScript] Week1 (0) | 2019.01.21 |