🔖

Node.jsで今月末の日付を取得

2022/12/03に公開

やりたいこと

Node.jsで今月末の日付を取得したい。

実装

  const now = new Date();
  const lastDate = new Date(
    now.getFullYear(),
    now.getMonth() + 1,
    0
  ).getDate();

Discussion