// 2020년 2월의 마지막 날짜 가져오기
const lastDay = new Date(2020, 2, 0).getDate();

// 29
console.log(lastDay);
Posted by bloodguy
,