js中的类型转换 (2)

typeof(a);//undefined typeof(undefined);//undefined typeof(NaN);//number typeof(null);//object var a="123abc"; typeof(+a);//numberr typeof(!!a);//boolean typeof(a+"");//string
1=="1";//true NaN==NaN;//false NaN==undefined;//false ''11''+11;//1111 1==='1';//false parseInt('123abc');//123 typeof(typeof(a));//string

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wspjyp.html