Find Object In an Array of objects
npm install foia
return the first index of the found object. Otherwise return -1.
var arrayofobjects = [
{ a : 'a' , b : 'b' },
{ c : 'c' , d : 'd' }
];
var foundobjindex = foia(arrayofobjects,{ a: 'a' , b : 'b'});
var notfoundobjindex = foia(arrayofobjects,{ a: 'b' , b : 'a'});
//foundobjindex : 0
//notfoundobjindex : -1