🔖Node.jsで今月末の日付を取得2022/12/03に公開Node.jstech やりたいこと Node.jsで今月末の日付を取得したい。 実装 const now = new Date(); const lastDate = new Date( now.getFullYear(), now.getMonth() + 1, 0 ).getDate(); Discussion
Discussion