在Chrome控制台中:
(new Date(Date.now())).toLocaleString()
返回"9/5/2014 9:43:08 PM"
new Date(Date.now())
返回'Fri Sep 05 2014 21:43:08 GMT+0530 (IST)'
在node.js REPL / app中:
(new Date(Date.now())).toLocaleString()
返回'Fri Sep 05 2014 21:43:18 GMT+0530 (IST)'
,与运行new Date(Date.now())
为了获得与chrome相同的输出格式,我需要做些什么改变。