How to get the following format 2019-07-06T09:00:00.000Z
using momentjs
What I tried to do is:
console.log(moment().format()); // 2019-07-05T12:29:29+03:00`
What I need is instead of +03:00
--> 000Z
in dynamic way of course.
Any momentJS format supported the format above or should I do it manually?