I know there are many functions in javascript that changes the date format, but I want to change the format of the string.
How can I change
2018-05-10T21:12:08Z
to
2018-05-10 9:12:08 AM
The date function doesn't work since it's not a date type.
You can use moment library to do all kind of date/time operations.
var dt = moment('2018-05-10T21:12:08Z');
console.log(dt.format('YYYY-MM-DD h:mm:ss A'));
Date.parse()first, or you can use an external library likemoment.jsDate, turn theDateinto a string…