Incoming BOLD Finance Intern
Google Sunnyvale, California
This file contains hidden or 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 ColorEvents() { | |
| var today = new Date(); | |
| var nextweek = new Date(); | |
| nextweek.setDate(nextweek.getDate() + 7); | |
| Logger.log(today + " " + nextweek); | |
| var calendars = CalendarApp.getAllOwnedCalendars(); | |
| Logger.log("found number of calendars: " + calendars.length); |