The first one is when we have an array holds regular elements like strings and I know how to use Includes on it.
But how about arrays holding objects as their element? How can I check if there is a certain value in those objects?
const arr = ['this', 'is', 'a test'];
console.log(arr.includes('this'));
const arr2 = [
{ id: '123', name: 'Alex' },
{ id: '345', name: 'Dan' },
{ id: '33', name: 'Joe' },
];
.map())?