“Cómo crear mi propio filtro en js” Código de respuesta

Cómo funciona la función filtre () javascript

const arr = [1, 2, 3, 4, 5, 6, 7, 8, 9];

const filter = arr.filter((number) => number > 5);
console.log(filter); // [6, 7, 8, 9]
DCmax1k

Cómo crear mi propio filtro en js

// filter takes an array and function as argumentfunction 
filter(arr, filterFunc) {
  const filterArr = []; // empty array        
  // loop though array    
  for(let i=0;i<arr.length;i++) {        
    const result = filterFunc(arr[i], i, arr);        
    // push the current element if result is true        
    if(result)             
      filterArr.push(arr[i]);     
  }    
  return filterArr;
}
Expensive Emu

Respuestas similares a “Cómo crear mi propio filtro en js”

Preguntas similares a “Cómo crear mi propio filtro en js”

Más respuestas relacionadas con “Cómo crear mi propio filtro en js” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código