Array.prototype.find()
The find()
method returns the first element in the provided array that satisfies the provided testing function.
If no values satisfy the testing function, undefined
is returned.
- If you need the index of the found element in the array, use
findIndex()
. - If you need to find the index of a value, use
indexOf()
. (It's similar tofindIndex()
, but checks each element for equality with the value instead of using a testing function.) - If you need to find if a value exists in an array, use
includes()
. Again, it checks each element for equality with the value instead of using a testing function. - If you need to find if any element satisfies the provided testing function, use
some()
.
Syntax
// Arrow function
find((element) => { /* … */ })
find((element, index) => { /* … */ })
find((element, index, array) => { /* … */ })
// Callback function
find(callbackFn)
find(callbackFn, thisArg)
// Inline callback function
find(function (element) { /* … */ })
find(function (element, index) { /* … */ })
find(function (element, index, array) { /* … */ })
find(function (element, index, array) { /* … */ }, thisArg)
Parameters
callbackFn
: A function to execute for each element in the array. It should return a truthy value to indicate a matching element has been found.
The function is called with the following arguments:
element
- : The current element being processed in the array.
index
- : The index of the current element being processed in the array.
array
- : The array
find()
was called upon.
- : The array
thisArg
optional- : A value to use as
this
when executingcallbackFn
.
- : A value to use as
Return value
The first element in the array that satisfies the provided testing function.
Otherwise, undefined
is returned.
Description
The find()
method is an iterative method. It calls a provided callbackFn
function once for each element in an array in ascending-index order, until callbackFn
returns a truthy value. find()
then returns that element and stops iterating through the array. If callbackFn
never returns a truthy value, find()
returns undefined
.
callbackFn
is invoked for every index of the array, not just those with assigned values. Empty slots in sparse arrays behave the same as undefined
.
find()
does not mutate the array on which it is called, but the function provided as callbackFn
can. Note, however, that the length of the array is saved before the first invocation of callbackFn
. Therefore:
callbackFn
will not visit any elements added beyond the array's initial length when the call tofind()
began.- Changes to already-visited indexes do not cause
callbackFn
to be invoked on them again. - If an existing, yet-unvisited element of the array is changed by
callbackFn
, its value passed to thecallbackFn
will be the value at the time that element gets visited. Deleted elements are visited as if they wereundefined
.
The find()
method is generic. It only expects the this
value to have a length
property and integer-keyed properties.