Filter Array On Multiple Attributes On Same Key
Solution 1:
Consider using Set.has() for your desired attributes, so you can can have O(1)
lookup time rather than the O(n)
(where n
is the number of desired attributes) lookup time using Array.includes().
As a result if you use a set the the overall the "time complexity" for the whole filter line will be O(m)
(where m
is the number of objects in data
) rather than O(mn)
if you used Array.includes() or had multiple if-else / or conditions to check for each desired attribute:
let data = [{
"name": "Product 2",
"link": "/stock/product2",
"category": "234",
"description": ""
}, {
"name": "Product 1",
"link": "/stock/product1",
"category": "1231",
"description": ""
}, {
"name": "Product 3",
"link": null,
"category": "22",
"description": ""
}]
const desiredCategories = newSet(["22", "234"])
data = data.filter(cv => desiredCategories.has(cv.category))
console.log(JSON.stringify(data, null, 2))
Solution 2:
You are comparing a single value against an array of values. One solution would be to check for one value or (||
) the other.
data = data.filter(cv => cv.category === "22" || cv.category === "234");
Solution 3:
This can be achieved by the includes method.
let data = [{
"name": "Product 2",
"link": "/stock/product2",
"category": "234",
"description": ""
}, {
"name": "Product 1",
"link": "/stock/product1",
"category": "1231",
"description": ""
}, {
"name": "Product 3",
"link": null,
"category": "22",
"description": ""
}]
data = data.filter(cv => ["22", "234"].includes(cv.category));
console.log(JSON.stringify(data))
Besides, I think this is easy to read/understand.
Solution 4:
Check if the item is in the array instead
data = data.filter(cv => ["22", "234"].includes(cv.category));
Solution 5:
const data = [{
"name": "Product 2",
"link": "/stock/product2",
"category": "234",
"description": ""
}, {
"name": "Product 1",
"link": "/stock/product1",
"category": "1231",
"description": ""
}, {
"name": "Product 3",
"link": null,
"category": "22",
"description": ""
}]
const filteredData = data.filter(({ category }) => category === "22" || category === "234");
console.log(JSON.stringify(filteredData))
I wouldn't mutate your original object. Also, you can deconstruct category in the filter function.
Post a Comment for "Filter Array On Multiple Attributes On Same Key"