function FormatTime(jsonDate,formatString) { jsonDate = jsonDate.split('(')[1].split(')')[0]; var rDate = new Date(parseInt(jsonDate)); return rDate.format(formatString); }
function FormatTime(jsonDate,formatString) {
jsonDate = jsonDate.split('(')[1].split(')')[0];
var rDate = new Date(parseInt(jsonDate));
return rDate.format(formatString);
}