js 判断数组是否存在某值
时间: 2023-12-11 22:02:07 浏览: 92
js及jquery常用语法
可以使用数组的includes()方法来判断是否存在某个值,例如:
```javascript
let arr = [1, 2, 3, 4];
if (arr.includes(3)) {
console.log('数组中存在值为3的元素');
} else {
console.log('数组中不存在值为3的元素');
}
```
输出结果为:数组中存在值为3的元素。
阅读全文