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


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


typedArray.reduceRight()是JavaScript中的內置函數,用於將typedArray的每個元素從右到左縮小為單個值。句法:

typedArray.reduceRight(callback)

參數:它接受參數回調函數,該函數接受下麵指定的一些參數-

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

返回值:它返回reduceRight()函數的結果。


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.reduceRight(sum) +"<br>"); 
  document.write(B.reduceRight(sum) +"<br>"); 
  document.write(C.reduceRight(sum) +"<br>"); 
  document.write(D.reduceRight(sum)); 
     
     
</script>

輸出:

10
18
9
20


相關用法


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