find out the index of an object from array javascript code example
Example: js find index in list
let myList = ['foo', 'bar', 'qux'];
myList.indexOf('bar'); // 1
let myList = ['foo', 'bar', 'qux'];
myList.indexOf('bar'); // 1