If I enter
new Date('0001-01-01T00:00:00.0000000Z')
into Chrome's console, the output is
Date Mon Jan 01 0001 00:34:08 GMT+0034 (Mitteleuropäische Normalzeit)
Where are the 34:08 minutes coming from? How can I circumvent this?
I'm asking this because to specify "an unknown date long ago", our application writes 01/01/0001 into the database, which shows up as 01/01/0001 00:34
in the UI, which is of course slightly disturbing.
Don't tell me not to use "magic numbers" for things like this, I didn't write the application...