TypedArray.prototype.findIndex()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2016.
TypedArray
인스턴스의 findIndex()
메서드는 주어진 판별 함수를 만족하는 배열의 첫 번째 요소에 대한 인덱스를 반환합니다. 만족하는 요소가 없으면 -1을 반환합니다. 이 메서드는 Array.prototype.findIndex()
와 같은 알고리즘을 가집니다.
시도해보기
구문
js
findIndex(callbackFn)
findIndex(callbackFn, thisArg)
매개변수
반환 값
테스트를 통과하는 첫 번째 요소의 인덱스입니다. 일치하는 요소가 없으면 -1
을 반환합니다.
설명
보다 자세한 설명은 Array.prototype.findIndex()
을 참고하시기 바랍니다. 이 메서드는 범용 메서드가 아니며 오직 형식화 배열 인스턴스에서만 호출할 수 있습니다.
예제
형식화 배열에서 소수의 색인 찾기
다음 예제에서는 배열에서 소수인 첫번째 요소의 인덱스를 찾습니다. 소수가 없으면 -1을 반환합니다.
js
function isPrime(element, index, array) {
let start = 2;
while (start <= Math.sqrt(element)) {
if (element % start++ < 1) {
return false;
}
}
return element > 1;
}
const uint8 = new Uint8Array([4, 6, 8, 12]);
const uint16 = new Uint16Array([4, 6, 7, 12]);
console.log(uint8.findIndex(isPrime)); // -1, 찾을 수 없음
console.log(uint16.findIndex(isPrime)); // 2
명세서
Specification |
---|
ECMAScript Language Specification # sec-%typedarray%.prototype.findindex |
브라우저 호환성
BCD tables only load in the browser