I need to use the Google Calendar service for editing single instances of an event series. The service returns datetime values in RFC 3339 format (like 2022-11-03T21:30:41.043Z
), which is hard to process within Google apps script. Is there an easy way feeding it into Utilities.formatDate
to convert it (ie yyyy-MM-dd HH:mm
)?
Vice versa is plainly done with .toISOString()
.