typedArray.values () es una función incorporada en JavaScript que se utiliza para obtener el valor especificado de los contenidos de typedArray().
Sintaxis:
typedArray.values()
Parámetros No acepta ningún parámetro.
Valor devuelto : Devuelve el valor especificado del objeto typedArray dado.
Código #1:
<script> // Constructing a new typedArray Uint8Array() with some value. const A = new Uint8Array([ 5, 10, 15, 20, 25, 30 ]); // Calling typedArray.values() function. const B = A.values(); // Shifting array iterator to next element // iterator assigned to 10 B.next(); // iterator assigned to 15 B.next(); // iterator assigned to 20 B.next(); // Printing value 20 document.write(B.next().value); </script>
Producción:
20
Código #2:
<script> // Constructing a new typedArray Uint8Array() with some value. const A = new Uint8Array([5, 10, 15, 20, 25, 30]); // Calling typedArray.values() function. const B = A.values(); // Shifting array iterator to next element // iterator assigned to 10 B.next(); // iterator assigned to 15 B.next(); // iterator assigned to 20 B.next(); // iterator assigned to 25 B.next(); // iterator assigned to 30 B.next(); // Now iterator go beyond the index B.next(); document.write(B.next().value); </script>
Producción:
undefined
Aquí la salida no está definida porque el iterador de array cruza el límite superior.