I am passing an ISO string for instantiating a date, on some browsers the date is created with timezone offset and on some its created without it...
is the a way to get around this issue, maybe something which is uniform across all browsers.
I'm looking for a way to create the date exactly like it came from the server.
The example ISO date and function I am currently using
var isoDate = '2017-10-29T00:00:00';
var date = new Date(isoDate); // some browsers create with offset and some without
Thanks!