메토도 findIndex - JavaScript
파라메트로스
콜백 - Função passada como reference, será executada a cada iteração do array. Esta função pode receber 3 argumentos.
element - O elemento que está sendo processado no array.
인덱스 - 배열이 없는 프로세스를 처리할 수 있는 요소입니다. (선택사항)
배열 - O 배열 para qual findIndex foi chamada. (선택사항)
신탁스
const elementIndex = numbers.findIndex(functionCallback);
레토르노
findIndex() retorna o índice do primeiro elemento que passou no teste da função provida. Se nenhum elemento satisfazer retornará -1 indicando que nenhum elemento passou no teste.
예시
용감한 이구알 19의 복원
const numbers = [10, 6, 8, 19, 18, 20];
function checkNumber(value) {
return value === 19;
}
const elementIndex = numbers.findIndex(checkNumber);
// elementIndex -> 3
Retorna o índice do elemento que tem o valor igual 40, mas neste caso retorna -1 porque não existe esse valor no array.
const numbers = [10, 6, 8, 19, 18, 20];
function checkNumber(value) {
return value === 40;
}
const elementIndex = numbers.findIndex(checkNumber);
// elementIndex -> -1
Método findindex | Notion
Reference
이 문제에 관하여(메토도 findIndex - JavaScript), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/elianbecali/metodo-findindex-javascript-lpl텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)