typedArray.reverse () es una función incorporada en JavaScript que se utiliza para invertir los elementos typedArray dados, es decir, el primer elemento se convierte en el último y viceversa.
Sintaxis:
typedArray.reverse();
Parámetro: No acepta ningún parámetro.
Valor devuelto: Devuelve el nuevo typedArray invertido.
Código JavaScript para mostrar el funcionamiento de esta función:
<script> // Creating some typedArrays with some elements const A = new Uint8Array([ 1, 2, 3, 4, 5, 6 ]); const B = new Uint8Array([ 5, 10, 15, 20 ]); const C = new Uint8Array([ 2, 4, 6, 8, 10 ]); const D = new Uint8Array([ 1, 3, 5, 7 ]); const E = new Uint8Array(); // Calling reverse() function on the above typedArray a = A.reverse(); b = B.reverse(); c = C.reverse(); d = D.reverse(); e = E.reverse(); // Printing the reversed typedArray document.write(a + "<br>"); document.write(b + "<br>"); document.write(c + "<br>"); document.write(d + "<br>"); document.write(e); </script>
Producción:
6, 5, 4, 3, 2, 1 20, 15, 10, 5 10, 8, 6, 4, 2 7, 5, 3, 1
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