I looked at various examples on the net; however, i cannot seem to the get the LinkedIn timestamp to parse correctly.
Inpeticualy the year.
What am i missing here?
1352236307000
function parseTwitterDate(epoch) {
var newDate = new Date();
newDate.setTime(epoch * 1000);
dateString = newDate.toUTCString();
return dateString;
};
Posted Sun, 30 Aug 44820 04:23:20 GMT