當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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

相關用法


注:本文由純淨天空篩選整理自Karthikeya Boyini大神的英文原創作品 TypedArray.lastIndexOf() function in JavaScript。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。