You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
new Date().getTimezoneOffset() returns -180 for UTC+3. DateTime.fromStandardDate(new Date()).toString() should return the value YYYY-MM-DDThh:mm:ss.ms+03:00.
Unexpected behaviour
DateTime.fromStandardDate(new Date()).toString() returns the value YYYY-MM-DDThh:mm:ss.ms-03:00.
Expected behaviour
new Date().getTimezoneOffset()
returns -180 for UTC+3.DateTime.fromStandardDate(new Date()).toString()
should return the valueYYYY-MM-DDThh:mm:ss.ms+03:00
.Unexpected behaviour
DateTime.fromStandardDate(new Date()).toString()
returns the valueYYYY-MM-DDThh:mm:ss.ms-03:00
.JS Date.getTimezoneOffset() returns a negative offset for the positive local timezone.
The text was updated successfully, but these errors were encountered: