반응형
메서드 find()는 제공된 테스트 기능을 만족하는 제공된 배열의 첫 번째 요소를 반환합니다.
테스트 기능을 만족하는 값이 없으면 undefined 반환됩니다.
const array1 = [5, 12, 8, 130, 44];
const found = array1.find(element => element > 40);
const index = array1.findIndex(element => element > 12);
console.log(found);
console.log(index);
// 출력
// 130
// 3
요소가 하나만 출력된다
반응형
'Javascript' 카테고리의 다른 글
[Javascript] concat(), slice(), splice() 함수 (0) | 2023.05.31 |
---|---|
[TS] Generics, Any 차이 (0) | 2023.03.09 |
[TS] TypeScript를 사용하는 이유 (2) | 2023.03.04 |
[JS] null과 undefined 차이 (0) | 2023.03.04 |
[JS] 정규표현식 간단한 정리 (0) | 2023.03.03 |