Untitled

 avatar
user_1671475754
javascript
3 years ago
242 B
5
Indexable
function fuzzyFinder(array_of_objs){
  let counter =0;
  for(let i=0; i<array_of_objs.length; i++){
    const obj = array_of_objs[i];
    if(obj["name"].toLowerCase().includes('fuzzy')){
      counter++;
    }
  }
  return counter;
}
Editor is loading...