How to use TypedArray.reduceRight() to reduce all values within typed array from the right in JavaScript

1 Answer

0 votes
// typedarray.reduceRight(callback[, initialValue])

var sum = new Uint8Array([4, 9, 25]).reduceRight(function(a, b) {
  return a - b;
});

document.write(sum);

// 25 - 9 - 4

/*
run:

12 

*/

 



answered Aug 15, 2016 by avibootz
...