I have below code in my function
alert(date);
var result = new Date(date);
alert(result);
Output as below
When I set my system time as India
2017-11-07
Tue Nov 07 2017 05:30:00 GMT+0530 (India Standard Time)
When I set my System timezone as US & Canada
2017-11-07
Mon Nov 06 2017 18:00:00 GMT-0600 (Central Standard Time)
What is the issue here and how can I fix this?