在node.js中创建时如何在gmt 0中获取新的Date()?

时间:2017-02-28 20:10:57

标签: javascript node.js date

如何在node.js中的utc timezone 0中创建新的Date()?

console.log(new Date('02-28-2017')) //2017-02-27T22:00:00.000Z
console.log(new Date('02-28-2017').toUTCString()); //Mon, 27 Feb 2017 22:00:00 GMT
console.log(new Date(new Date('02-28-2017').toUTCString())); //Mon, 27 Feb 

我想得到:

console.log(new Date('02-28-2017')) //2017-02-28T00:00:00.000Z

2 个答案:

答案 0 :(得分:-1)

<h2>this is a bunch of text</h2>

答案 1 :(得分:-2)

您可以将字符串“ GMT”简单地附加到日期的末尾以获取GMT日期:

new Date('02-28-2017 GMT')
// "Tue, 28 Feb 2017 00:00:00 GMT"

这是您要找的吗?