lastIndexOf方法怎么使用
程序员文章站
2022-03-14 18:19:32
...
lastIndexOf() 方法可返回一个指定的字符串值最后出现的位置,如果指定第二个参数 start,则在一个字符串中的指定位置从后向前搜索。下面我们就来具体看看lastIndexOf方法的使用方法。
我们先来看一下lastIndexOf()的基本语法
arr.lastIndexOf(searchElement[,index])
lastIndexOf()的第一个参数是searchElement,它是要在数组中搜索的值。第二个参数是可选的index,它定义数组中的起始索引,从中向后搜索元素。如果未提供此参数,则将index arr.length -作为开始向后搜索的起始索引,因为它是默认值。
lastIndexOf()返回searchElement最后一次出现的索引。如果在数组中找不到该元素,则此函数返回-1。
下面我们来看具体示例
函数lastindexof()返回出现2的最后一个索引,即0.
代码如下
<!DOCTYPE html> <html> <head> <title></title> </head> <body> <script> function func() { var array = [2, 9, 9]; document.write(array.lastIndexOf(2)); } func(); </script> </body> </html>
输出结果为:0
函数lastindexof()查找最后出现的索引45。因为它不存在,所以函数返回-1。
代码如下
<!DOCTYPE html> <html> <head> <title></title> </head> <body> <script> function func() { var array = [2, 98, 12, 45]; document.write(array.lastIndexOf(45,2)); } func(); </script> </body> </html>
输出结果为:-1.
本篇文章到这里就全部已经结束了,更多精彩内容大家可以关注的其他相关栏目教程!!!
以上就是lastIndexOf方法怎么使用的详细内容,更多请关注其它相关文章!