在JavaScript中,indexOf()
方法用于查找數(shù)組中指定元素的索引位置,如果找到則返回元素的索引值,如果沒有找到則返回-1。
語法:
array.indexOf(item, start)
參數(shù):
item
:要查找的元素start
:可選參數(shù),從哪個(gè)索引位置開始查找,默認(rèn)為0示例:
var fruits = ["apple", "banana", "orange", "grape"];
var index = fruits.indexOf("orange");
console.log(index); // 輸出:2
var index2 = fruits.indexOf("watermelon");
console.log(index2); // 輸出:-1
在上面的示例中,如果"orange"
存在于數(shù)組fruits
中,則返回其索引值;如果"watermelon"
不存在于數(shù)組中,則返回-1。