Javascript Uint8ClampedArray reduce()

Introduction

The Javascript Uint8ClampedArray reduce() method Uint8ClampedArray to a single value.

This method works the same as Array.prototype.reduce().

Uint8ClampedArray.reduce(callback[, initialValue])
Parameter
Optional
Meaning
callback





Required





Function to execute on each value
Taking four arguments:
initialValue - the value returned in the last invocation.
currentValue - the current element.
index - the index of the current element.
array - the typed array itself.
initialValue
Optional
Object to use as the first argument to the first call of the callback.

Sum up all values within an array

var total = new Uint8ClampedArray([0, 1, 2, 3]).reduce(function(a, b) {
  return a + b;/*from  w ww  .j  a va  2 s .c om*/
});
console.log(total);



PreviousNext

Related