Skip to content

Instantly share code, notes, and snippets.

@artemsites
Last active October 24, 2024 18:03
Show Gist options
  • Save artemsites/2bf93e0a6f87d187fbd34b8a8518258e to your computer and use it in GitHub Desktop.
Save artemsites/2bf93e0a6f87d187fbd34b8a8518258e to your computer and use it in GitHub Desktop.
export function checkArraysContainSameObjects(arr1, arr2, key) {
if (arr1.length !== arr2.length) {
return false
}
return arr1.every(arr1Obj => arr2.some(arr2Obj => arr1Obj[key] === arr2Obj[key]))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment