Skip to content

Instantly share code, notes, and snippets.

@jTakasuRyuji
Created September 10, 2021 12:25
Show Gist options
  • Select an option

  • Save jTakasuRyuji/631ebc4f243cee5e0653ad452cab676b to your computer and use it in GitHub Desktop.

Select an option

Save jTakasuRyuji/631ebc4f243cee5e0653ad452cab676b to your computer and use it in GitHub Desktop.
takoyaki-festival
function hogeGS() {
let calendar = CalendarApp.getDefaultCalendar();
let title = "takoyaki-festival";
let startTime = new Date("2021/9/10 21:30");
let endTime = new Date("2021/9/10 21:40");
let options = {
description: "ほげほげふがふが",
location: "マイハウス"
}
calendar.createEvent(title, startTime, endTime, options);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment