Às vezes, formatar datas é uma merda, então aqui está uma função fácil de começar para formatar suas datas!
/**
* formatPostDate - returns a string of the correct date format given a UTC timestamp.
* e.g. 12.25.2012
*
* @param dateString
*/
var formatPostDate = function(dateString){
var tempDateObj = new Date(dateString),
retDateString = '';
retDateString = (tempDateObj.getMonth()+1) + '.' + tempDateObj.getDate() + '.' + tempDateObj.getFullYear();
return retDateString;
};