Javascript Uint32Array from()

Introduction

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

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

Uint32Array.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 ww  .  j a v  a2 s  .  c o m
let a = Uint32Array.from(s);
console.log(a);

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

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

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



PreviousNext

Related