Open1

Day.js で月初、月末をミリ秒で取得

plaincode_jpplaincode_jp
// 月初
dayjs('2021-09-01').startOf('month').valueOf();
// => 1630422000000


// 月末
dayjs('2021-09-01').endOf('month').valueOf();
// => 1633013999999