TypedArray.prototype.find()
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.
Array
인스턴스의 find()
메서드는 제공된 형식화 배열에서 제공된 테스트 함수를 만족하는 첫 번째 요소를 반환합니다. 테스트 함수를 만족하는 값이 없으면 undefined
가 반환됩니다. 이 메서드는 Array.prototype.find()
와 동일한 알고리즘을 가집니다.
시도해보기
구문
js
find(callbackFn)
find(callbackFn, thisArg)
매개변수
반환 값
제공된 테스트 함수를 만족하는 형식화 배열의 첫 번째 요소입니다.
테스트 함수를 만족하는 요소가 없으면, undefined
가 반환됩니다.
설명
보다 자세한 정보는 Array.prototype.find()
를 참고하시기 바랍니다. 이 메서드는 범용적이지 않으며 오직 형식화 배열 인스턴스에서만 호출할 수 있습니다.
예제
형식화 배열에서 소수 찾기
다음 예제는 형식화 배열의 요소 중 소수인 요소를 찾습니다(소수가 없는 경우에는 undefined
를 반환합니다).
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, 5, 8, 12]);
console.log(uint8.find(isPrime)); // 5
명세서
Specification |
---|
ECMAScript Language Specification # sec-%typedarray%.prototype.find |
브라우저 호환성
BCD tables only load in the browser
같이 보기
core-js
에서TypedArray.prototype.find
폴리필- JavaScript 형식화 배열 안내서
TypedArray
TypedArray.prototype.findIndex()
TypedArray.prototype.findLast()
TypedArray.prototype.findLastIndex()
TypedArray.prototype.includes()
TypedArray.prototype.filter()
TypedArray.prototype.every()
TypedArray.prototype.some()
Array.prototype.find()