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))
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3b1e4-2bab5.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3b1e4-2bab5.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?