I realized when printing Dates from UTC that from 1893 to 1894 there are 6 minutes diff and 32 seconds.
Why is that?
new Date(Date.UTC(1894,0,1))
// Mon Jan 01 1894 01:00:00 GMT+0100 (Central European Standard Time)
new Date(Date.UTC(1893,0,1))
// Mon Jan 01 1893 00:53:28 GMT+0053 (Central European Standard Time)
My timezone is "Europe/Berlin"