数据类型检测
typeof
typeof null"object"let a = typeof typeof typeof [12,23];console.log(a);// typeof typeof "obeject"// typeof "string"// => "string"

instanceof
数据类型转换

Number处理
字符串中只要出现非数字字符结果就是NaN,空字符串是零,true变为1,false变为0,null变为0,undefined变为NaN
让时间为你证明