I have an array
let bingo = [{"Device": "fan", "Manafacturer": "Havells"}, {"Device": "Ceiling", "Manafacturer": "bajaj"}]
how to check if particular object exists in this case let it be
let obj ={"Device": "Ceiling", "Manafacturer": "bajaj"}
//should return true or {"Device": "Ceiling", "Manafacturer": "bajaj"}
obj ={"Device": "light", "Manafacturer": "bajaj"}
//should return false or undefined