developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Array/findIndex

 

Array.prototype.findIndex() - JavaScript | MDN

Array.prototype.findIndex() findIndex() 메서드는 주어진 판별 함수를 만족하는 배열의 첫 번째 요소에 대한 인덱스를 반환합니다. 만족하는 요소가 없으면 -1을 반환합니다. The source for this interactive exampl

developer.mozilla.org

 

Array.findIndex 매서드는 원하는 조건의 값의 Index값을 반환 해준다.

배열내에 값이 없을 경우 -1를 반환 해준다.

 

// findIndex 매서드는 말그대로 해당 value의 index값을 찾아주는 매서드이다.

const numbers = [1, 2, 3, 4, 5];

const res = numbers.findIndex(findThree);

function findThree(value) {
   // index 2
   return value === 3;
   // index 3
   return value === 4;
}