Vinny B
Posts: 0
Joined: Fri Aug 22, 2014 2:22 pm

convert twitter date and time to est

Hello I followed the twitter tutorial and it worked great. The only problem i have is the time stamp from twitter is wrong. Is it possible in mapping javascript to change the date/time from twitter to EST?

I tried a bunch of scripts but I always get NAN or Invalid Date.

Thank you

Vinny B
Posts: 0
Joined: Fri Aug 22, 2014 2:22 pm

convert twitter date and time to est

I got this to work

var text = value;
var tweet = new Date(Date.parse(text.replace(/( +)/, ' UTC$1')));
return tweet;

but know it shows Mon Sep 07 2015 20:06:49 GMT-0400 (Eastern Daylight Time)

any ideas how to get ride of GMT-0400 (Eastern Daylight Time)?

thank you

Serhii Kulibaba
Posts: 150
Joined: Tue Aug 27, 2013 1:47 pm

convert twitter date and time to est

Hello Vinny,

You can use moment.js for that. E.g.:http://stackoverflow.com/questions/10...

Return to “Issues”