Problem with Time Zones
Hello All,
Last weekend Brazil should have entered Daylight Savings Time but it was canceled earlier this year by the government. After that, some services that use times are very strange.
For instance, this simple javascript code that returns the epoch timestamp:
time = new Date ("2019","09","25","0","0","0");
time_ms = time.valueOf();
result = time_ms;
This returns the following result: 1571968800000.
Converting this epoch value to date time using https://www.epochconverter.com/ gives the following date-time:
Thursday, October 24, 2019, 11:00:00 PM GMT-03:00 which is offset in 1 hour from the time inserted originally.
Using the same code on an online javascript editor such as https://playcode.io/ gives the result 1571972400000 which gives the correct date.
The time on the client-side and the server-side are correct.
Any thoughts?

