const array = [{id: 1, name: '신림'}, {id: 2, name: '양재'}] const array2 = [{id: 3, name: '봉천'}, {id: 1, name: '강남'}]
const result = a.filter(item => b.some(other => other.id === item.id));
같지 않은 것을 구할땐 other.id !== item.id 이 아닌 !b.some 를 이용해야 한다.