I have a date format like this "2016-07-14T10:52:36.000Z"
and I want to convert it to yyyymmddhis
format.
The reason is that in my project I have files stored in AWS S3 where link is generated via the upload time.
I have tried using moment.js moment("2016-07-14T10:52:36.000Z").format('yyyymmddhis');
Can any body help?