indexesOf

This commit is contained in:
Rohit Tanwar
2018-01-06 13:54:37 +05:30
parent 8f3820157a
commit d6f19e4acb

13
snippets/indexesOf.md Normal file
View File

@ -0,0 +1,13 @@
### indexesOf
Returns an array of indexes at which the `val` occurs in `arr`. If it occurs only once return the `index` and if it never occurs returns `-1`
``` js
const indexesOf = (arr, val) => {
let indexes = [], i;
for(i = 0; i < arr.length; i++)
if (arr[i] === val)
indexes.push(i);
return indexes.length === 0 ? -1 : indexes.length === 1 indexes.pop() : indexes
}
```