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


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


typedArray.find()是JavaScript中的內置函數,如果該值滿足函數中給定的條件,則該函數用於返回typedArray中的值,否則返回未定義。

用法:

typedArray.find(callback)

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


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

返回值:如果元素滿足函數提供的條件,則返回數組的值,否則返回未定義。

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 find() function to check condition 
   // provided by its parameter 
   const a = A.find(isNegative); 
   const b = B.find(isNegative); 
   const c = C.find(isNegative); 
   const d = D.find(isNegative); 
  
   // Printing the finded typedArray 
   document.write(a +"<br>"); 
   document.write(b +"<br>"); 
   document.write(c +"<br>"); 
   document.write(d); 
  
</script>

輸出:

-10
-30
-10
undefined



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