[Solved] How can I another filter for score which will show the results matching the range?

Add one more else if to your code: else if (key === “score”) { const low = filters[key] === “20” && user[“score”] <= filters[key]; const medium = filters[key] === “50” && user[“score”] < 50 && user[“score”] >= 21; const high = filters[key] === “70” && user[“score”] < 70 && user[“score”] >= 51; const veryHigh = … Read more