当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。