results.data
.filter((x) => countries.includes(x.country))
.filter((x) => x.car_model_year > startYear && x.car_model_year < endYear)
.filter((x) => x.gender.toLowerCase() === gender.toLowerCase())
.filter((x) => colours.includes(x.car_color)),
I have this piece of code above countries, startYear, endYear, gender and colours are variables that can be null or undefined. The issue is it should ignore the filteration for that specific variable if the variable is empty(null or undefined). What is the best way to implement it, thank you.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…