Does Google Apps Script use a funky version of EcmaScript that can\'t parse a date? How can I parse the date 2011-04-11T19:25:40Z into a JavaScript Date Object
2011-04-11T19:25:40Z
Google apps script works fine when you use slashes instead of dashes. Like:
var date = new Date ('2017/12/26 9:55 am'); Logger.log(date);