typedArray.entries () es una función incorporada en JavaScript que proporciona un nuevo objeto iterador de array que contiene los pares de clave y valor del objeto typedArray dado.
Sintaxis:
typedArray.entries()
Parámetro: No acepta ningún parámetro.
Valor devuelto Devuelve un nuevo objeto iterador de array que contiene los pares clave y valor del objeto typedArray dado.
Código #1:
<script> // Creating a typedArray Uint8Array() with some elements const uint8 = new Uint8Array([ 5, 10, 15, 20, 25, 30 ]); // Calling entries() function A = uint8.entries(); // Shifting array iterator to next element one by one // Iterator assigned to 10 A.next(); // Iterator assigned to 15 A.next(); document.write(A.next().value); </script>
Producción:
2, 15
Aquí 2 es el índice del elemento 15.
Código #2:
<script> // Creating a typedArray Uint8Array() with some elements const uint8 = new Uint8Array([ 5, 10, 15, 20, 25 ]); // Calling entries() function A = uint8.entries(); // Shifting array iterator to next element one by one // Iterator assigned to 10 A.next(); // Iterator assigned to 15 A.next(); // Iterator assigned to 20 A.next(); // Iterator assigned to 25 A.next(); // Iterator went out of index A.next(); document.write(A.next().value); </script>
Producción:
undefined
Aquí la salida no está definida porque el iterador supera el límite superior.