Javascript Uint8ClampedArray from()

Introduction

The Uint8ClampedArray.from() method creates a new typed array from an array-like or iterable object.

This method works the same as Array.from().

Uint8ClampedArray.from(source[, mapFn[, thisArg]])
Parameter Optional Meaning
sourceRequired An array-like or iterable object to convert to a typed array.
mapFn Optional Map function to call on every element of the typed array.
thisArgOptional Value to use as this when executing mapFn.
// Set (iterable object)
const s = new Set([1, 2, 3]);/* w w  w  . j  a  va2  s .  c  om*/
let a = Uint8ClampedArray.from(s);
console.log(a);

//String
a = Int16Array.from('123');
console.log(a);

// Using an arrow function as the map function to manipulate the elements
a = Float32Array.from([1, 2, 3], x => x + x);
console.log(a);

// Generate a sequence of numbers
a = Uint8ClampedArray.from({length: 5}, (v, k) => k);
console.log(a);



PreviousNext

Related