I want to change date format from yyyy-MM-dd'T'HH:mm:ss.SSS'Z' to dd-mmm-yyyy when dates comes from JSON object. I am downloading this JSON using ng-csv plugin. Download functionality is working fine but I need to convert date format using JavaScript. I have JSON structure like this
[{
"Dates": "2016-09-27T18:30:00.000Z",
"ABC": 40,
"PQR": 1,
"XYZ": 18
}, {
"Dates": "2016-10-02T18:30:00.000Z",
"ABC": 43,
"PQR": 11,
"XYZ": 8
}, {
"Dates": "2016-10-03T18:30:00.000Z",
"ABC": 6,
"PQR": 76,
"XYZ": 34
}]
Any suggestion? Thanks in Advance.