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


Javascript typedArray.reduce()用法及代码示例


typedArray.reduce()是JavaScript中的内置函数,用于将typedArray的每个元素从左到右缩小为单个值。句法:

typedArray.reduce(callback)

参数:它接受参数回调函数,该函数接受下面指定的一些参数-

  • previousValue:它是先前返回的值。
  • currentValue:它是typedArray中正在处理的当前元素。

返回值:它返回reduce()函数的结果。


JavaScript代码显示此函数的工作方式:

代码1:
<script> 
    
  // Creating some typedArray 
  const A = new Uint8Array([ 1, 2, 3, 4]); 
  const B = new Uint8Array([5, 6, 7]); 
  const C = new Uint8Array([1, 3, 5]); 
  const D = new Uint8Array([2, 4, 6, 8]); 
  
  // Calling sum() function  
  function sum(previousValue, currentValue) { 
  return previousValue + currentValue; 
  } 
  
  // Printing reduced value of the given typedArray 
  document.write(A.reduce(sum) +"<br>"); 
  document.write(B.reduce(sum) +"<br>"); 
  document.write(C.reduce(sum) +"<br>"); 
  document.write(D.reduce(sum)); 
     
     
</script>

输出:

10
18
9
20


相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 JavaScript | typedArray.reduce() with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。