JavaScript typedArray.of() Method
Last Updated : 10 Feb, 2023
Improve
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 :
javascript
// 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