JavaScript中的TypedArray.lastIndexOf()函数

TypedArray对象的lastIndexOf()函数接受一个值并验证类型数组是否包含指定的元素。如果是这样,则此函数返回找到指定元素的数组的索引,如果该元素多次出现,则此函数返回其中的最后一个索引。如果数组不包含指定的元素,则indexOf()函数将返回-1。

语法

它的语法如下

typedArray.lastIndexOf(50)

示例

<html>
<head>
   <title>JavaScript Array every Method</title>
</head>
<body>
   <script type="text/javascript">
      var int32View = new Int32Array([21, 19, 65, 21, 14, 66, 87, 55, 66, 97, 66 ]);
      document.write("Contents of the typed array: "+int32View);
      document.write("<br>");
      var contains = int32View.lastIndexOf(66);
      document.write("Specified element occurred at the index: "+contains);
   </script>
</body>
</html>

输出结果

Contents of the typed array: 21,19,65,21,14,66,87,55,66,97,66
Specified element occurred at the index: 10