ユーザ用ツール

サイト用ツール


サイドバー

このページの翻訳:



最近の更新



Tag Cloud

13_javascript:03_gas:01_last_date

01 GAS 前月末/前月初日

  var now = new Date();
  var start_date = new Date(now.getFullYear(), now.getMonth()-1, 1);
  var end_date = new Date(now.getFullYear(), now.getMonth(), -1);
  
  Logger.log(now.getFullYear() + " " + now.getMonth());
  Logger.log(Utilities.formatDate(now, 'Asia/Tokyo', 'yyyy/MM/dd'));
  Logger.log(Utilities.formatDate(start_date, 'Asia/Tokyo', 'yyyy/MM/dd'));
  Logger.log(Utilities.formatDate(end_date, 'Asia/Tokyo', 'yyyy/MM/dd'));

※getMonth()の戻り値は、0~11です。(0=1月、11=12月)

結果

7:11:43	お知らせ	実行開始
7:11:43	情報	2022 3
7:11:43	情報	2022/04/01
7:11:43	情報	2022/03/01
7:11:43	情報	2022/03/30
7:11:44	お知らせ	実行完了
13_javascript/03_gas/01_last_date.txt · 最終更新: 2022/04/01 07:14 by matsui