隐式转换
isNaN最终转换成Boolean
isNaN(null)结果为false
++,––,+(正),–(负),+,–,*,%都最终转换为number类型。
&&,||,!
>,<,<=,>=,==,!=结果都为Boolean值
undefined==null结果为ture
NaN==NaN结果为false
不发生类型转换的
===(绝对等于),==!(绝对不等于)
NaN===NaN结果为false
延伸
typeof(typeof(undefined)结果为string类型。
网友评论