如何在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
答案 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"
这是您要找的吗?