const d = new Date("2023/12/30");のようなやり方でDate型に特定の値を入れたい
以下のようにすると実行日の日付が入ってしまいます。
const d = new Date("2023/12/30"); Logger.log(d);
0 コメント