JavaScript | typedArray.values() con ejemplos

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 JavaScript para mostrar el funcionamiento de esta función:

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.

Publicación traducida automáticamente

Artículo escrito por ShivamKD y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *