I\'m attempting to find an object in an array using Array.prototype.includes. Is this possible? I realize there is a difference between shallow and deep compari
Array.prototype.includes
const arr = [{a: 'b',b:'c'},{a: 'c'}] console.log(arr.some(item => item.b === 'c'))