I have something like /Date(1370001284000+0200)/ as timestamp. I guess it is a unix date, isn\'t it? How can I convert this to a date like this: 31.05.201
/Date(1370001284000+0200)/
31.05.201
Looks like you might want the ISO format so that you can retain the timezone.
var dateTime = new Date(1370001284000); dateTime.toISOString(); // Returns "2013-05-31T11:54:44.000Z"
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString