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 in Google Apps Script?

My log output from below logs NaN.

function showDate(){
  var d = Date.parse("2011-04-11T19:25:40Z");
  Logger.log(d); // <-- Logs NaN
}

Edit: http://jsfiddle.net/UTrYm/

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

The format specified in section 15.9.1.15 is YYYY-MM-DDTHH:mm:ss.sssZ so maybe try adding milliseconds to your date format as in Date.parse("2011-04-11T19:25:40.000Z").

link|improve this answer
That did it. Is there a reason why JSFiddle is able to parse it but Google Apps Script cannot? – citizen conn Jul 13 '11 at 18:57
@citizen conn, I believe Google Apps Script uses Rhino to interpret your JavaScript, whereas JSFiddle is using the interpreter built into your browser. Rhino is allowed to reject that input according to the spec but your browser's interpreter is being more permissive than the spec requires and not requiring milliseconds. – Mike Samuel Jul 13 '11 at 19:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.