Since new Date().toUTCString()
returns a string like "Wed, 11 Oct 2017 09:24:41 GMT"
you can slice the last 3 characters and pass the sliced string to new Date()
:
new Date()
// Wed Oct 11 2017 11:34:33 GMT+0200 (CEST)
new Date(new Date().toUTCString().slice(0, -3))
// Wed Oct 11 2017 09:34:33 GMT+0200 (CEST)