자바스크립트에서 현재 달 1일과 마지막일 구하는 방법
const today = new Date(); const year = today.getFullYear(); const month = today.getMonth(); // 이번달 1일, 마지막 일 const firstDay = new Date(year, month, 1); const lastDay = new Date(year, month + 1, 0); // month에 1더해야함
lastDay month에 1더하고 세 번째 인자에 0을 넣은 이유