标签: javascript
为什么
console.log('' == false); //true
但
console.log('' === false); //false
根据this,最后一行应该返回true,对吗?
答案 0 :(得分:7)
因为===检查类型而字符串是字符串而false是布尔值。
===
答案 1 :(得分:2)
不,当您在javascript中使用===时,您还要比较类型,see this article,这将更详细地解释。