作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
var codeList = [ "ok", "error" ]
var msg = { "status": "ok" }
console.log(msg.status in codeList) // returns false
它似乎可以在我的 iPad 上运行,但不能在我的电脑上运行。这是我的 Chrome 64.0.3282.119、Windows 10 x64、JavaScript V8 6.4.388.40 上的屏幕截图:
最佳答案
根据documentation :
The in operator returns true if the specified property is in the specified object or its prototype chain.
使用array.includes()相反。
PS:MDN documentation中有很多有趣的东西;)
关于javascript - 为什么 (thisIsInTheArray in array) 返回 false?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48477068/
这个问题已经有答案了: Why does javascript's "in" operator return true when testing if 0 exists in an array tha
我是一名优秀的程序员,十分优秀!