주어진 판별 함수를 만족하는 배열의 첫 번째 요소에 대한 인덱스를 반환한다. 만족하는 요소가 없으면 -1을 반환한다.
const arr1 = [5,6,7,14,788];
const isLagerNumber = (el) => el > 13;
console.log(arr1.findIndex(isLagerNumber));
// output: 3
arr.findIndex(callback(element[, index[, array]])[, thisArg])
callback
element
index
array
thisArg
요소가 테스트를 통과하면 배열의 인덱스, 그렇지 않으면 -1
참고