在JavaScript中,有一些替代方法可以用來代替indexOf
方法,例如:
includes
方法:includes
方法是用來檢測數組中是否包含指定元素的方法,如果包含則返回true
,否則返回false
。const arr = [1, 2, 3, 4, 5];
console.log(arr.includes(3)); // true
console.log(arr.includes(6)); // false
findIndex
方法:findIndex
方法是用來返回數組中滿足條件的第一個元素的索引值,如果沒有找到則返回-1
。const arr = [1, 2, 3, 4, 5];
const index = arr.findIndex(item => item === 3);
console.log(index); // 2
indexOf
方法的替代方法也可以是find
方法:const arr = [1, 2, 3, 4, 5];
const index = arr.find(item => item === 3);
console.log(index); // 3
總的來說,includes
、findIndex
和find
方法都可以替代indexOf
方法來查找數組中的元素。