Given the volume of Timezone questions, I would have thought to be able to find the answer to this issue, but haven\'t had any success.
Is there a way using mo
mo
If you know for sure your input string is in the ISO-8601 format, you could just strip off the last 5 digits and use that in the Moment constructor.
var input = "2012-12-31T00:00:00+0000" input = input.substring(0, input.length-5) moment(input).toString() > "Mon Dec 31 2012 00:00:00 GMT-0600"