Answer the question
In order to leave comments, you need to log in
How to find out what format?
2019-01-02T11:26:05.073+0200 there is such a date how to find out the format like yyyy-MM-dd and so on
Answer the question
In order to leave comments, you need to log in
This is the international standard ISO 8601 .
In js, dates have a built-in toISOString() method.
let foo = new Date();
foo.toISOString();
// -> "2019-07-31T09:11:39.715Z"
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question