I'm getting different results when calling new Date() on different tabs in my browser. On one tab, I have a web application running on a remote server and I executed "new Date()" and I received:
Fri Sep 21 2018 15:20:16 GMT-0700 (GMT-07:00)
which is what I want. On a different tab, I have the same application running locally and I run "new Date()", but I receive
Fri Sep 21 2018 22:20:16 GMT+0000 (GMT)
Why is the timezones listed differently? Both the server and my local machine are in the same time zone.