javascript中 +new Date()使用

+对于之后的日期对象进行加法运算,倒是触发了日期对象valueof()方法,所以最终得到的是日期对象的毫秒数,也就是时间戳。

varnow =newDate, time =now.getTime();

console.log(time==now.valueOf());//true

console.log(time==+now);//true

你可能感兴趣的:(javascript中 +new Date()使用)