I want to convert this type of date Thu Oct 31 2019 15:07:23 GMT-0600 (Central Standard Time)
to this 2019-10-08T15:07:38
and I'm using mommentjs to convert the date but when I try to implement the next code I only get this 2019-10-23T15:07:23-05:00
.
const newDate = moment.parseZone(result).format();
The variable result
have this value Thu Oct 31 2019 15:07:23 GMT-0600 (Central Standard Time)
and the result is this 2019-10-23T15:07:23-05:00
. It doesn't matter if I need to use another library.