js 数组中包含某个元素
时间: 2023-03-29 14:01:17 浏览: 89
使用js判断数组中是否包含某一元素(类似于php中的in_array())
你可以使用数组的 includes() 方法来判断数组中是否包含某个元素。例如:
let arr = [1, 2, 3, 4, 5];
let element = 3;
if (arr.includes(element)) {
console.log("数组中包含元素 " + element);
} else {
console.log("数组中不包含元素 " + element);
}
输出结果为:数组中包含元素 3
阅读全文