const things = [{id: 1}, {id: 2}, {id: 3}];
const wantedThings = [1, 2];

const chosen = things.filter(thing => wantedThings.includes(thing.id));

console.log(chosen);

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.