Saturday, October 18, 2025
HomeLanguagesJavascriptJavaScript typedArray.from() Property

JavaScript typedArray.from() Property

The typedArray.from() is an inbuilt function in JavaScript which is used to construct a new typedArray from a normal array or any iterable object.

List of different typedArrays are specified in the table below:

Int8Array(); Int16Array(); Uint32Array();
Uint8Array(); Uint16Array(); Float32Array();
Uint8ClampedArray(); Int32Array(); Float64Array();

Syntax:

typedArray.from(source, mapFn, thisArg)

Parameters: It accepts three parameters which are specified below-

  • source: It is a normal array or any iterable object for converting to a typedArray.
  • mapFn: It is optional and it is map function to call on every element of the typedArray.
  • thisArg: It is optional and it is the value to be used while executing mapFn function.

Return value: It returns a new typedArray instance. 

Example 1: 

javascript




// Constructing an iterable object
var a = new Set([ 5, 10, 15, 20, 25 ]);
var b = new Set([ 1, 2, 3, 4, 5 ]);
var c = new Set([ 1, 3, 5, 7, 9 ]);
var d = new Set([ 2, 4, 6, 8, 10 ]);
  
// Calling from() function
A = Uint8Array.from(a);
B = Uint8Array.from(b);
C = Uint8Array.from(c);
D = Uint8Array.from(d);
  
// Printing new typedArray instance
console.log(A);
console.log(B);
console.log(C);
console.log(D);


Output:

5, 10, 15, 20, 25
1, 2, 3, 4, 5
1, 3, 5, 7, 9
2, 4, 6, 8, 10

Example 2: 

javascript




// Calling from() function
A = Uint16Array.from('123456');
B = Uint16Array.from('80397418327');
  
// Printing new typedArray instance
console.log(A);
console.log(B);


Output:

1, 2, 3, 4, 5, 6
8, 0, 3, 9, 7, 4, 1, 8, 3, 2, 7

Example 3: 

javascript




// Constructing an iterable object
var a = new Set([ 5, 10, 15, 20, 25 ]);
var b = new Set([ 1, 2, 3, 4, 5 ]);
var c = new Set([ 1, 3, 5, 7, 9 ]);
var d = new Set([ 2, 4, 6, 8, 10 ]);
  
// Calling from() function
A = Uint8Array.from(a, x => x + 1);
B = Uint8Array.from(b, x => x + 2);
C = Uint8Array.from(c, x => x * 2);  
D = Uint8Array.from(d);
  
// Printing new typedArray instance
console.log(A);
console.log(B);
console.log(C);
console.log(D);


Output:

6, 11, 16, 21, 26
3, 4, 5, 6, 7
2, 6, 10, 14, 18
2, 4, 6, 8, 10
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS