JavaScript | typedArray.filter() con ejemplo

typedArray.filter () es una función incorporada en javascript que se usa para formar una nueva typedArray con los elementos que satisfacen la prueba implementada por la función provista.
Sintaxis:

typedarray.filter(callback)

Parámetros: Toma la función de «devolución de llamada» del parámetro que verifica cada elemento del typedArray satisfecho por la condición proporcionada. La función de devolución de llamada toma tres parámetros que se especifican a continuación:

  • elemento: Es el valor del elemento.
  • índice: Es el índice del elemento.
  • array: Es la array que se está recorriendo.
  • Valor de retorno: Devuelve un nuevo typedarray con los elementos que satisfacen la prueba.

    Código JavaScript para mostrar el funcionamiento de esta función:

    <script>
      
       // Calling isNegative function to check
       // elements of the typedArray
       function isNegative(element, index, array)
       {
        return element < 0;
       }
      
       // Created some typedArrays.
       const A = new Int8Array([ -10, 20, -30, 40, -50 ]);
       const B = new Int8Array([ 10, 20, -30, 40, -50 ]);
       const C = new Int8Array([ -10, 20, -30, 40, 50 ]);
       const D = new Int8Array([ -10, 20, 30, 40, -50 ]);
      
       // Calling filter() function to check condition
       // provided by its parameter
       const a = A.filter(isNegative);
       const b = B.filter(isNegative);
       const c = C.filter(isNegative);
       const d = D.filter(isNegative);
      
       // Printing the filtered typedArray
       document.write(a +"<br>");
       document.write(b +"<br>");
       document.write(c +"<br>");
       document.write(d);
         
    </script>
    

    Producción:

    -10,-30,-50
    -30,-50
    -10,-30
    -10,-50

    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 *