其它数据类型转 boolean

大体分两种:隐式类型转换和显式类型转换

隐式类型转换用 !!

 var str = "abc";
 str = !!str;
 console.log(typeof str);  //boolean

 

显式类型转换用Boolean()

var str = "abc";
str = Boolean(str);
console.log(typeof str); //boolean

 

posted @ 2016-11-14 00:41  半炷香  阅读(178)  评论(0)    收藏  举报