🙆

【JavaScript】今日/今月/今年、月初/月末

2022/02/25に公開
// 今日
const nowDate = new Date();

// 今月
const nowMonth = nowDate.getMonth() + 1;

// 今年
const nowYear = nowDate.getFullYear().toString();

// 今月の0埋め
const nowMonthPadding =  ( '00' + nowMonth ).slice( -2 );

// 月初の日付
const nowMonthFirst = new Date(nowDate.getFullYear(), nowDate.getMonth(), 1);

// 月末の日付
const nowMonthLast = new Date(nowDate.getFullYear(), nowDate.getMonth()+1, 0);

↓矛盾する気がするので、そちらを見てもらった方が良いかも。時間があれば修正予定。
https://zenn.dev/dev63/articles/cd3851068ee9a7

Discussion