JavaScript Array findLast()
Example 1
Find the value of the last element with a value over 18:
function checkAge(age) {
return age > 18;
}
function myFunction() {
document.getElementById("demo").innerHTML = ages.findLast(checkAge);
}
Description
ThefindLast() method returns the value of the last element that passes a test.
ThefindLast() method executes a function for each array element.
ThefindLast() method returnsundefined if no elements are found.
ThefindLast() method does not execute the function for empty elements.
ThefindLast() method does not change the original array.
Array Find Methods:
| Method | Finds |
|---|---|
| includes() | Returns true if an array contains a specified value |
| indexOf() | The index of the first element with a specified value |
| lastIndexOf() | The index of the last element with a specified value |
| find() | The value of the first element that passes a test |
| findIndex() | The index of the first element that passes a test |
| findLast() | The value of the last element that passes a test |
| findLastIndex() | The index of the last element that passes a test |
Syntax
Parameters
| function() | Required. A function to run for each array element. |
| currentValue | Required. The value of the current element. |
| index | Optional. The index of the current element. |
| arr | Optional. The array of the current element. |
| thisValue | Optional. Defaultundefined.A value passed to the function as its this value. |
Return Value
| Type | Description |
| A value | The value of the last element that pass the test. Otherwise it returns undefined. |
Example 2
Find the value of the last element with a value above a specific number:
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
const ages = [4, 12, 16, 20];
function checkAge(age) {
return age > document.getElementById("ageToCheck").value;
}
function myFunction() {
document.getElementById("demo").innerHTML = ages.findLast(checkAge);
}
</script>
Array Tutorials:
Browser Support
findLast() is a JavaScript 2023 feature.
ES 2023 is supported in all modern browsers sinceJuly 2023:
| Chrome 110 | Edge 110 | Firefox 115 | Safari 16.4 | Opera 96 |
| Feb 2023 | Feb 2023 | Jul 2023 | Mar 2023 | May 2023 |

