贪玩招牌

文章
2
资源
0
加入时间
2年10月21天

js 将字符串转换为布尔值boolean

Boolean(); 参数为 0、null 和无参数返回false,有参数返回true。Boolean(""); //输出为:falseBoolean(null); //输出为:falseBoolean(0); //输出为:false Boolean("hi"); //输出为:trueBoolean(100); //输出为:trueBoolean(new Object(...