This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function delete_events() | |
{ | |
// Copy and Paste this script at https://script.google.com and then run it | |
// This script modified from code found at this Stackoverflow question and answer: | |
// https://webapps.stackexchange.com/questions/19513/how-to-delete-all-events-on-many-dates-all-at-once-but-not-the-whole-calendar-in | |
var fromDate = new Date(1995,0,1,0,0,0); | |
var toDate = new Date(2015,0,1,0,0,0); |