Is there a way to create a Javascript date without any specific timezone? When I try to do so in Javascript, it automatically sets it to GMT Pacific standard time.
let newDate = new Date(new Date().getFullYear(), 0, 2, 0, 0, 0, 0) },
newDate: Sat Feb 01 2020 00:00:00 GMT-0800 (Pacific Standard Time)}
Is there a method to have no timezone specified or to set the timezone to 0?