new Date
和+new Date
之间的区别是什么?
例如:
var date = new Date;
console.log(date);
var plusDate = +new Date;
console.log(plusDate);
日志:
Sat May 10 2014 01:13:46 GMT+0300 (Jordan Standard Time)
1399673626539
答案 0 :(得分:3)
unary plus operator将Date
对象转换为Number
对象(expressed in in milliseconds since 01 January, 1970 UTC)。
答案 1 :(得分:-2)
第一个创建一个Date对象,第二个将当前日期值(以毫秒为单位)添加到原始值plusDate
,即0。