javascript中 +new Date()使用
2017-11-02 本文已影响0人
duziten
+对于之后的日期对象进行加法运算,倒是触发了日期对象valueof()方法,所以最终得到的是日期对象的毫秒数,也就是时间戳。
varnow =newDate, time =now.getTime();
console.log(time==now.valueOf());//true
console.log(time==+now);//true
+对于之后的日期对象进行加法运算,倒是触发了日期对象valueof()方法,所以最终得到的是日期对象的毫秒数,也就是时间戳。
varnow =newDate, time =now.getTime();
console.log(time==now.valueOf());//true
console.log(time==+now);//true