js中数组indexOf的使用

时间:2025-01-20 19:34:58

1.概念

该方法返回某个元素在数组中的位置。

2.语法

(item,start)

3.参数值

参数 描述
item 必须。查找的元素
start 可选。规定检索的位置,它的合法取值是 0 到 - 1。

4. 返回值

返回元素在数组中的位置,若没检索到,则返回 -1。

5.示例

var arr = [1,2,3];
((1));//0
((2));//1
((3));//2
((4));//-1