const things = [{id: 1}, {id: 2}, {id: 3}];
const wantedThings = [1, 2];
const chosen = things.filter(thing => wantedThings.includes(thing.id));
console.log(chosen);
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.