日付・時刻の生成と操作
const now = new Date();
now.getFullYear(); // 2024
now.getMonth(); // 0〜11 (0=1月に注意)
now.getDate(); // 1〜31
Date.now(); // Unixタイムスタンプ(ms)
now.toLocaleDateString('ja-JP'); // '2024/3/25'
now.toISOString(); // '2024-03-25T00:00:00.000Z'getMonth()は0始まりなので注意。複雑な日付操作にはdate-fnsやdayjsなどのライブラリを使うと安全。