JavaScript typedArray.sort() Method

Last Updated : 10 Feb, 2023

The typedArray.sort() is an inbuilt function in JavaScript which is used to sort the elements of the given typedArray and return the new typedArray with the sorted elements. 

Syntax:

typedArray.sort();

Parameter: It does not accept any parameters. 

Return value: It returns the new typedArray with the sorted elements. 

Example:

javascript
// Creating some typedArrays with some elements
const A = new Uint8Array([ 5, 9, 1, 0, 45, 2 ]);
const B = new Uint8Array([ 22, 9, 1, 20 ]);
const C = new Uint8Array([ 5, 9, 0, 3, 1 ]);
const D = new Uint8Array([ 1, 3, 100, 42, 4 ]);

// Calling sort() function on the above typedArray
a = A.sort();
b = B.sort();
c = C.sort();
d = D.sort();

// Printing the sorted typedArray
console.log(a);
console.log(b);
console.log(c);
console.log(d);

Output:

0, 1, 2, 5, 9, 45
1, 9, 20, 22
0, 1, 3, 5, 9
1, 3, 4, 42, 100
Comment