UNPKG

wat

Version:

Community-controlled cheat sheets for every coder.

12 lines (9 loc) 288 B
## .indexOf(searchElement[, fromIndex]) Returns the index of the first occurrence of a value in an array. ```js var arr = ["ab", "cd", "ef", "ab", "cd"]; arr.indexOf('cd'); // 1 arr.indexOf('cd', 2); // 4 arr.indexOf('gh'); // -1 arr.indexOf('ab', -2); // 3 ```