js判断字符串不在数组中
时间: 2023-10-17 15:17:14 浏览: 107
JS实现字符串去重及数组去重的方法示例
可以使用数组的`indexOf`方法来判断字符串是否存在于数组中。如果`indexOf`返回-1,则说明该字符串不存在于数组中。
示例代码:
```js
var arr = ["apple", "banana", "orange"];
var str = "pear";
if (arr.indexOf(str) === -1) {
console.log(str + " is not in the array.");
} else {
console.log(str + " is in the array.");
}
```
输出结果:
```
pear is not in the array.
```
阅读全文