Why does javascript#39;s quot;inquot; operator return true when testing if 0 exists in an array that doesn#39;t contain 0?(为什么javascript的“in?运算符在测试不包含 0 的数组中是否存在 0 时返回 true?)
问题描述
为什么 Javascript 中的in"运算符在测试数组中是否存在0"时返回 true,即使数组似乎不包含0"?
Why does the "in" operator in Javascript return true when testing if "0" exists in array, even when the array doesn't appear to contain "0"?
例如,这返回 true,并且有意义:
For example, this returns true, and makes sense:
var x = [1,2];
1 in x; // true
这返回 false,并且有意义:
This returns false, and makes sense:
var x = [1,2];
3 in x; // false
但是这返回 true,我不明白为什么:
However this returns true, and I don't understand why:
var x = [1,2];
0 in x;
推荐答案
指的是索引或键,而不是值.0
和 1
是该数组的有效索引.还有有效的键,包括 length"
和 toString"
.试试 2 in x
.这将是错误的(因为 JavaScript 数组是 0 索引的).
It refers to the index or key, not the value. 0
and 1
are the valid indices for that array. There are also valid keys, including "length"
and "toString"
. Try 2 in x
. That will be false (since JavaScript arrays are 0-indexed).
请参阅 MDN 文档.
这篇关于为什么javascript的“in"?运算符在测试不包含 0 的数组中是否存在 0 时返回 true?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么javascript的“in"?运算符在测试不包含 0 的数组中是否存在 0 时返回 true?
- 如何调试 CSS/Javascript 悬停问题 2022-01-01
- 从原点悬停时触发 translateY() 2022-01-01
- 使用 iframe URL 的 jQuery UI 对话框 2022-01-01
- 是否可以将标志传递给 Gulp 以使其以不同的方式 2022-01-01
- 我不能使用 json 使用 react 向我的 web api 发出 Post 请求 2022-01-01
- 如何向 ipc 渲染器发送添加回调 2022-01-01
- 为什么我的页面无法在 Github 上加载? 2022-01-01
- 为什么悬停在委托事件处理程序中不起作用? 2022-01-01
- 在不使用循环的情况下查找数字数组中的一项 2022-01-01
- 如何显示带有换行符的文本标签? 2022-01-01