当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript TypedArray.indexOf()用法及代码示例


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

用法

其语法如下

typedArray.indexOf(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.indexOf(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
Specified element occurred at the index:5

示例

<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.indexOf(634);
      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
Specified element occurred at the index:-1

相关用法


注:本文由纯净天空筛选整理自Samual Sam大神的英文原创作品 TypedArray.indexOf() function in JavaScript。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。