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


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


typedArray.findIndex()是JavaScript中的內置函數,如果值滿足函數中給定的條件,則該函數用於返回tyedArray中的索引,否則返回-1。句法:

typedarray.findIndex(callback)

參數:它采用參數“callback”函數,該函數檢查提供的條件滿足的typedArray的每個元素。回調函數采用以下指定的三個參數:

  • element:它是元素的值。
  • index:它是元素的索引。
  • array:遍曆的是數組。

返回值:如果元素滿足函數提供的條件,則返回數組中的索引;否則,返回-1。
JavaScript代碼顯示此函數的工作方式:


<script> 
  
   // Calling isNegative function to check 
   // elements of the typedArray 
   function isNegative(element, index, array) 
   { 
    return element < 0; 
   } 
  
   // Created some typedArrays. 
   const A = new Int8Array([ -10, 20, -30, 40, -50 ]); 
   const B = new Int8Array([ 10, 20, -30, 40, -50 ]); 
   const C = new Int8Array([ -10, 20, -30, 40, 50 ]); 
   const D = new Int8Array([ 10, 20, 30, 40, 50 ]); 
  
   // Calling findIndex() function to check condition 
   // provided by its parameter 
   const a = A.findIndex(isNegative); 
   const b = B.findIndex(isNegative); 
   const c = C.findIndex(isNegative); 
   const d = D.findIndex(isNegative); 
  
   // Printing the indexes typedArray 
   document.write(a +"<br>"); 
   document.write(b +"<br>"); 
   document.write(c +"<br>"); 
   document.write(d); 
  
</script>

輸出:

0
2
0
-1



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