js 将字符串转换为布尔值boolean
Boolean(); 参数为 0、null 和无参数返回false,有参数返回true。Boolean(""); //输出为:falseBoolean(null); //输出为:falseBoolean(0); //输出为:false Boolean("hi"); //输出为:trueBoolean(100); //输出为:trueBoolean(new Object(...