Update First-one-to-pass-truth-test.md

This commit is contained in:
Meet Zaveri
2017-12-16 18:06:11 +05:30
committed by GitHub
parent 8ee2afab21
commit f504a8cf77

View File

@ -3,9 +3,8 @@
A function that looks through an array (first argument) and returns the first element in the array that passes a truth test (second argument).
```
function findElement(arr, func) {
findElement = (arr, func) => {
filterArr = arr.filter(func); //filter array with the function provided
return filterArr[0]; //return the first element that returns true, or undefined if no elements return true
}