What's the difference between this date format:
"2021-01-01T00:00:00.000Z"
and this one:
"2021-01-01T00:00:00+00:00"
Are they both valid ISO formats? When I call new Date().toISOString()
in JavaScript, I get the first one.
For some reason, I'm having trouble finding a definitive answer on this.