Untitled
user_1671475754
javascript
4 years ago
242 B
9
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...