Compare two sets of object arrays according to whether an attribute in the element is equal Filter array

arr3 = [
  {
    a: 13,
    b: 14,
    c: 15,
    d: 78,
  },
  {
    a: 17,
    b: 23,
    c: 145,
    d: 718,
  },
]

ask the boss to give a solution

Mar.03,2022

arr2.filter(item => arr1.find(_item => item.a === _item.a && item.b === _item.b))
Menu