typedArray.indexOf()是JavaScript中的内置函数,如果在给定的typedArray中找到该元素,则用于返回元素的索引,否则返回-1。句法:
typedarray.indexOf(Element, Index);
参数:它接受下面指定的两个参数-
- Element:它是在typedArray中搜索索引的元素。
- Index:它是应该开始搜索的typedArray形式中元素的索引。其默认值为零(0),并且是可选的。
返回值:如果在给定的typedArray中找到该元素,则返回元素的索引,否则返回-1。
代码1:
<script>
// Creating some typedArrays
const A = new Uint8Array([ 1, 2, 3, 4, 5 ]);
const B = new Uint8Array([ 5, 10, 15, 20 ]);
const C = new Uint8Array([ 0, 2, 4, 6,, 8, 10 ]);
const D = new Uint8Array([ 1, 3, 5, 7, 9 ]);
// Calling indexOf() function
a = A.indexOf(2)
b = B.indexOf(15, 1)
c = C.indexOf(6)
d = D.indexOf(9, 1)
// Printing the index of the elements given
// as the parameter of the indexOf() function
document.write(a + "<br>");
document.write(b + "<br>");
document.write(c + "<br>");
document.write(d);
</script>
输出:
1 2 3 4
代码2:
<script>
// Creating some typedArrays
const A = new Uint8Array([ 1, 2, 3, 4, 5 ]);
const B = new Uint8Array([ 5, 10, 15, 20 ]);
const C = new Uint8Array([ 0, 2, 4, 6,, 8, 10 ]);
const D = new Uint8Array([ 1, 3, 5, 7, 9 ]);
// Calling include() function
a = A.indexOf(6)
b = B.indexOf(21, 1)
c = C.indexOf(6, 4)
d = D.indexOf(0)
// Printing the index of the elements given
// as the parameter of the indexOf() function
document.write(a + "<br>");
document.write(b + "<br>");
document.write(c + "<br>");
document.write(d);
</script>
输出:
-1 -1 -1 -1
相关用法
- Javascript typedArray.from()用法及代码示例
- Javascript typedArray.of()用法及代码示例
- Javascript weakSet.has()用法及代码示例
- Javascript typedArray.map()用法及代码示例
- Javascript weakSet.add()用法及代码示例
- Javascript weakMap.set()用法及代码示例
- Javascript weakMap.has()用法及代码示例
- Javascript typedArray.every()用法及代码示例
- Javascript getPrototypeOf()用法及代码示例
- Javascript uneval()用法及代码示例
- Javascript parseInt()用法及代码示例
- Javascript parseFloat()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 JavaScript | typedArray.indexOf() with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。