如何提取日期

时间:2013-09-12 12:21:01

标签: coffeescript meteor

使用时 test = new Date()

console.log ('test')我得

"Thu Sep 12 2013 17:55:25 GMT+0545 (NPT)"。我只需要"Thu Sep 12 2013"。 在执行这些(new Date()).getDay()时,它对我不起作用。 帮帮我们。 谢谢你的推荐!

1 个答案:

答案 0 :(得分:2)

怎么样:

test = new Date()

console.log(test.toDateString())

来自:http://devdocs.io/javascript/global_objects/date/todatestring