js数组查找是否包含方法总结var arr = [1, 2, 3, 4, 5, 6] 方法一: indexOf (常用) if (arr.indexOf(2) !== -1) { console.log("包含2") } 方法二: fi2023-02-27JavaScript220