I do not think that the other published answers are completely correct, you have already accepted it as working for you, so I will not edit it.
Here is an updated version of your accepted answer.
var dateString = "\/Date(1334514600000)\/".substr(6); var currentTime = new Date(parseInt(dateString )); var month = currentTime.getMonth() + 1; var day = currentTime.getDate(); var year = currentTime.getFullYear(); var date = day + "/" + month + "/" + year; alert(date);
He uses a technique from this to extract an era from a JSON date.
source share