get object of particular index from array of objects code example
Example: how to get the index of an array in javascript
search = (arr, item) => { return arr.indexOf(item); }
search = (arr, item) => { return arr.indexOf(item); }