jss数组找到某个元素
时间: 2023-07-07 09:45:04 浏览: 94
数组元素查询
如果你想在 JavaScript 中的数组中找到某个元素,可以使用数组的 `indexOf()` 方法。该方法返回要查找的元素在数组中的第一个匹配项的索引,如果没有找到,就返回 -1。
例如,如果你有一个数组 `arr`,想要查找其中是否包含元素 `"hello"`,可以这样做:
```
let arr = ["hello", "world", "foo", "bar"];
if (arr.indexOf("hello") !== -1) {
console.log("Found it!");
} else {
console.log("Not found.");
}
```
这段代码会输出 `"Found it!"`,因为数组中包含元素 `"hello"`。如果将要查找的元素改为 `"baz"`,则会输出 `"Not found."`。
阅读全文