how to return the index of an array in javascript without indexOf 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); }