学习笔记:JS中将其它数据类型转为布尔值
//将其它数据类型转换为布尔值。1.数字类型除了0和Nan为fasle,其它均为true。2.字符串除了空串,其余都为true。3.类型null、undefined都为false。4.对象类型也会转换为true。var a = 0;a = Boolean(a);console.log(a); //false;var b1 = Infinity;b1 = Boolean(b1);console.log(b1); //truevar b = " ";b = Boolea