js 布尔,字符串,数值 数据类型的转换
js 布尔,字符串,数值 数据类型的转换1.Boolean()函数//Boolean()函数 eg:Boolean("true");//代表空,否定的值会被转换为false, eg:0,NaN,null,undefined var str = "2"; console.log(Boolean("12")); //true console.log(Boolean("str")); //true