You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Datejs - A JavaScript Date Library
PS - I am in Eastern Timezone:
Date.parse("2010-11-27T00:12:12Z")
>> Sat Nov 27 2010 00:12:12 GMT-0500 (Eastern Standard Time)
[wrong - the timezone is specified in the string as UTC]
Date.parse("2010-11-27T00:12:12Z").setTimezone('Z')
>> Fri Nov 26 2010 19:12:12 GMT-0500 (Eastern Standard Time)
[correct... but why do I have to tell it about "Z" twice?]