Find duplicates from two arrays of objects and return boolean (Javascript)

There are two arrays of objects and I need to check if there’s any property that’s matching by comparing those two arrays. For example,

const array1 = [{name: 'foo', phoneNumber: 'bar'}, {name: 'hello', phoneNumber: 'world'}]
const array2 = [{name: 'hi', phoneNumber: 'earth'}, {name: 'foo', phoneNumber: 'bar'}]

In this case since 1 property from each array is matching and I would like to return true. In case of none of the properties matching I would like to return false.

Thanks in advance!