+new Date()
看到+new Date(),有点不熟悉,所以特此记录一下;
js在某个数据类型前使用‘+’,这个操作目的是为了将该数据类型转换为Number类型,如果转换失败,则返回NaN;
例子 :+'2'+1 // 3
+[1] // NaN
+new Date() 会调用Date.prototype 上面的 valueOf方法,根据
MDN:https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Date/valueOf
new Date().getTime() === new Date().valueOf() //true
下面的例子返回效果等同:
var date=new Date();
// 下面输出结果都一样
console.log(+date)
console.log(date.getTime())
console.log(date.valueOf())