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:
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