The toSorted()
method of TypedArray
instances is the copying version of the sort()
method. It returns a new typed array with the elements sorted in ascending order. This method has the same algorithm as Array.prototype.toSorted()
, except that it sorts the values numerically instead of as strings by default.