finding matching ids from given object array js code example
Example: extract data from object when it match with array of ids js
const keep = new Set(['id4', 'id2']);
const result = [];
for(const items of Object.values(data.items))
for(const item of items)
if(keep.has(item.id))
result.push(item);