I need some JS code that will take the created_at value from a Twitter feed and display it as xxxx ago.
created_at
I can find examples of creating the xxxx a
xxxx a
May be hella late but I just found out splitting the string by spaces and creating variables accordingly, easily allows you to breakdown the date.
// Ex. Thu Sep 28 03:40:33 +0000 2017 var tweetDate = data.tweet[i].created_at; tweetDate = tweetDate.split(' '); var tweetMo = tweetDate[1];