js bool true false 真假比较
最近遇到将“false”转为Boolen类型时,永远为真,便在网上收罗下下,发现了这篇文章,介绍了js比较的规则运行如下 javascript :if (’0′) alert(“’0′ is true”);if (’0′ == false) alert(“’0′ is false”);结果是,两次都 alert 了!那么 ’0′ 到底是 true 还是 false 呢?答案