Array.findIndex (인덱스 값 찾기)
developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Array/findIndex
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;
}
'JavaScript > Vanilla JS' 카테고리의 다른 글
Array.flat (중첩 배열 풀기, 빈값 제거) (0) | 2021.04.09 |
---|---|
Array.fill (배열 채우기) (0) | 2021.04.08 |
Array.reduce (누적 연산) (0) | 2021.04.06 |
Array.pop(), shift() (배열 제거) (0) | 2021.04.04 |
for of, for in 차이, break, continue (반복문) (0) | 2021.03.28 |
댓글
이 글 공유하기
다른 글
-
Array.flat (중첩 배열 풀기, 빈값 제거)
Array.flat (중첩 배열 풀기, 빈값 제거)
2021.04.09 -
Array.fill (배열 채우기)
Array.fill (배열 채우기)
2021.04.08 -
Array.reduce (누적 연산)
Array.reduce (누적 연산)
2021.04.06 -
Array.pop(), shift() (배열 제거)
Array.pop(), shift() (배열 제거)
2021.04.04