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


Javascript typedArray.indexOf()用法及代碼示例


typedArray.indexOf()是JavaScript中的內置函數,如果在給定的typedArray中找到該元素,則用於返回元素的索引,否則返回-1。句法:

typedarray.indexOf(Element, Index);

參數:它接受下麵指定的兩個參數-

  • Element:它是在typedArray中搜索索引的元素。
  • Index:它是應該開始搜索的typedArray形式中元素的索引。其默認值為零(0),並且是可選的。

返回值:如果在給定的typedArray中找到該元素,則返回元素的索引,否則返回-1。

JavaScript代碼顯示此函數的工作方式:

代碼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


相關用法


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