foia
v1.0.1
Published
find object in an array of objects
Readme
foia
Find Object In an Array of objects
installation
npm install foiausage
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
