My C# server side code is using listJson, it generates time strings like this:
"CaptureTime":"/Date(1399739515000)/"
How to convert into date format in JavaScript client side?
My C# server side code is using listJson, it generates time strings like this:
"CaptureTime":"/Date(1399739515000)/"
How to convert into date format in JavaScript client side?
 
    
    You can do it like this
<script>
d = new Date(1399739515000)
</script>
then d will be a javascript variable that you can then manipulate it on your scripts, like this code for example
d.toUTCString();
 
    
    Thanks to @fedmich:
var s='/Date(1399739515000)/';
var r=/\/Date\((\d*?)\)\//.exec(s);
var d=new Date(parseInt(matches[1]));
console.log(d.getFullYear() + '-' + d.getMonth() + '-' + d.getDate());
 
    
    Real short hand:
Date.prototype.yyyymmdd = function() {
     var yyyy = this.getFullYear().toString();
     var mm = (this.getMonth()+1).toString(); // getMonth() is zero-based
     var dd  = this.getDate().toString();
     return yyyy + '-' + (mm[1]?mm:"0"+mm[0]) + '-' + (dd[1]?dd:"0"+dd[0]); // padding
};
var s='/Date(1399739515000)/';
var regex = /(\d+)/g;
alert(new Date(parseInt(s.match(regex))).yyyymmdd());