2018-10-10 18:03:03 -04:00
---
id: a6e40f1041b06c996f7b2406
2021-02-06 04:42:36 +00:00
title: Finders Keepers
2018-10-10 18:03:03 -04:00
challengeType: 5
2021-01-12 08:18:51 -08:00
forumTopicId: 16016
2021-01-13 03:31:00 +01:00
dashedName: finders-keepers
2018-10-10 18:03:03 -04:00
---
2020-12-16 00:37:30 -07:00
# --description--
2018-10-10 18:03:03 -04:00
2021-02-06 04:42:36 +00:00
Create a function that looks through an array `arr` and returns the first element in it that passes a 'truth test'. This means that given an element `x` , the 'truth test' is passed if `func(x)` is `true` . If no element passes the test, return `undefined` .
2018-10-10 18:03:03 -04:00
2020-12-16 00:37:30 -07:00
# --hints--
2018-10-10 18:03:03 -04:00
2021-02-06 04:42:36 +00:00
`findElement([1, 3, 5, 8, 9, 10], function(num) { return num % 2 === 0; })` should return 8.
2018-10-10 18:03:03 -04:00
```js
2020-12-16 00:37:30 -07:00
assert.strictEqual(
findElement([1, 3, 5, 8, 9, 10], function (num) {
return num % 2 === 0;
}),
8
);
2018-10-10 18:03:03 -04:00
```
2021-02-06 04:42:36 +00:00
`findElement([1, 3, 5, 9], function(num) { return num % 2 === 0; })` should return undefined.
2018-10-10 18:03:03 -04:00
```js
2020-12-16 00:37:30 -07:00
assert.strictEqual(
findElement([1, 3, 5, 9], function (num) {
return num % 2 === 0;
}),
undefined
);
2018-10-10 18:03:03 -04:00
```
2020-08-13 17:24:35 +02:00
2021-01-13 03:31:00 +01:00
# --seed--
## --seed-contents--
```js
function findElement(arr, func) {
let num = 0;
return num;
}
findElement([1, 2, 3, 4], num => num % 2 === 0);
```
2020-12-16 00:37:30 -07:00
# --solutions--
2021-01-13 03:31:00 +01:00
```js
function findElement(arr, func) {
return arr.filter(func)[0];
}
findElement([1, 2, 3, 4], num => num % 2 === 0);
```