I have two arrays of objects and need to determine if certain items are contained in another array. If any of them are not found, the result should be false.
const arr = [
{full_name: 'Test'},
{full_name: 'Test1'},
{full_name: 'Test2'},
]
const arr1 = [
{full_name: 'Test'},
{full_name: 'Test1'},
{full_name: 'Test2'},
{full_name: 'Test3'},
{full_name: 'Test4'},
{full_name: 'Test5'},
{full_name: 'Test6'},
]
If arr1 contains Test, Test1, and Test2, the result will be true. If any of them are missing, the result will be false.
An operator may be needed for this task.