标签: javascript
new Date("6/18/2014") !== new Date("6/18/2014");
返回true
new Date("6/18/2014") === new Date("6/18/2014");
返回false
moment(datestring)返回与上面相同的内容。这怎么可能,以及与日期比较有什么关系。