El typedArray.sort() es una función incorporada en JavaScript que se usa para ordenar los elementos del typedArray dado y devolver el nuevo typedArray con los elementos ordenados.
Sintaxis:
typedArray.sort();
Parámetro: No acepta ningún parámetro.
Valor devuelto: Devuelve el nuevo typedArray con los elementos ordenados.
Código JavaScript para mostrar el funcionamiento de la función anterior:
<script> // 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 document.write(a + "<br>"); document.write(b + "<br>"); document.write(c + "<br>"); document.write(d + "<br>"); </script>
Producción:
0, 1, 2, 5, 9, 45 1, 9, 20, 22 0, 1, 3, 5, 9 1, 3, 4, 42, 100
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA