Open In App

JavaScript typedArray.of() Method

The typedArray.of() is an inbuilt function in JavaScript which is used to construct a new typedArray with a variable number of parameters. 

Syntax:



TypedArray.of(element0, element1, ......)

Parameters: It accepts parameters of different elements whose typedArray is going to be created. 

Return value: It returns the new typedArray instance. 



Example :




// Printing the new typedArray with the given elements with
// the parameters of typedArray.of() function.
console.log(Uint8Array.of(5, 9, 1, 0, 45, 2));
console.log(Uint8Array.of(22, 9, 1, 20));
console.log(Uint8Array.of(5, 9, 0, 3, 1));
console.log(Uint8Array.of(undefined));

Output:

5, 9, 1, 0, 45, 2
22, 9, 1, 20
5, 9, 0, 3, 1
0
Article Tags :