indexof() angular code example
Example 1: make indexOF in js
function indexOf(arr, value) {
for (let [i, e] of arr.entries()) {
if (value == e) return i;
}
return -1;
}
indexOf([1,2,3], 2); //returns 1
Example 2: how to use indexOf in typesript
var array = [2, 9, 9];
array.indexOf(2); // 0
array.indexOf(7); // -1
array.indexOf(9, 2); // 2
array.indexOf(2, -1); // -1
array.indexOf(2, -3); // 0