js在某个数据类型前使用‘+’,这个操作目的是为了将该数据类型转换为Number类型,如果转换失败,则返回NaN;
+new Date() 会调用 Date.prototype 上面的 valueOf 方法,相当于把这个时间对象做了隐士的类型转换。
根据
new Date().getTime() === new Date().valueOf() //true
下面的例子返回效果等同:
console.log(+new Date()); console.log(new Date().getTime()); console.log(new Date().valueOf()); console.log(Date.now()); console.log(new Date() * 1);
标签:console,log,getTime,valueOf,Date,new From: https://www.cnblogs.com/zyhxiaozhuzhu/p/16868619.html