“Jak stworzyć własny filtr w JS” Kod odpowiedzi

Jak działa funkcja Filter () 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

Jak stworzyć własny filtr w 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

Odpowiedzi podobne do “Jak stworzyć własny filtr w JS”

Pytania podobne do “Jak stworzyć własny filtr w JS”

Więcej pokrewnych odpowiedzi na “Jak stworzyć własny filtr w JS” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu