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


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


typedArray.every()函數是JavaScript中的內置函數,用於測試typedArray中存在的元素是否滿足該函數提供的條件。句法:

typedarray.every(callback)

參數:它以回調函數為參數。
回調是用於測試typedArray元素的函數。此回調函數采用以下指定的三個參數-

  • current_value:它是typedArray中正在處理的當前元素。
  • index:它是在類型化數組中正在處理的當前元素的索引。
  • array:它是typedArray。

返回值:如果函數回調為typedArray中存在的每個數組元素返回true值,則返回true,否則返回false。

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

代碼1:
<script> 
  
   // is_negative function is called to test the 
   // elements of the typedArray element. 
   function is_negative(current_value, index, array) 
   { 
    return current_value < 0; 
   } 
  
  // Creating a typedArray with some elements 
  const A = new Int8Array([ -5, -10, -15, -20, -25, -30 ]); 
  
  // Printing whether elements are satisfied by the 
  // functions or not 
  document.write(A.every(is_negative)); 
    
</script>

輸出:

true

代碼2:

<script> 
  
   // is_negative function is called to test the 
   // elements of the typedArray element. 
   function is_positive(current_value, index, array) 
   { 
    return current_value > 0; 
   } 
  
  // Creating a typedArray with some elements 
  const A = new Int8Array([ -5, -10, -15, -20, -25, -30 ]); 
  
  // Printing whether elements are satisfied by the 
  // functions or not 
  document.write(A.every(is_positive)); 
    
</script>

輸出:

false


相關用法


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