string; // trueBoolean(string); // true 1. 2. 数值 复制 constnumber=100;!!number; // trueBoolean(number); // true 1. 2. 虚值 在JavaScript中,有6个虚值。如果将其中任何一个字符串转换为Boolean,它将变为false 。 复制 falseundefinednullNaN0"" (empty string) 1. 2. 3. 4. 5. 6. 任...
JSON.parse('true')// 返回trueJSON.parse('false')// 返回false
Boolean(""); //输出为:false Boolean(null); //输出为:false Boolean(0); //输出为:false Boolean("hi"); //输出为:true Boolean(100); //输出为:true Boolean... Boolean(); 参数为 0、null 和无参数返回false,有参数返回true。 Boolean("");//输出为:falseBoolean(null);//输出为:falseBoolean...