2018-09-30 23:01:58 +01:00
---
id: a6e40f1041b06c996f7b2406
title: Finders Keepers
challengeType: 5
2019-07-31 11:32:23 -07:00
forumTopicId: 16016
2021-01-13 03:31:00 +01:00
dashedName: finders-keepers
2018-09-30 23:01:58 +01:00
---
2020-11-27 19:02:05 +01:00
# --description--
2020-07-14 12:59:53 +05:30
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-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --hints--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
`findElement([1, 3, 5, 8, 9, 10], function(num) { return num % 2 === 0; })` should return 8.
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert.strictEqual(
findElement([1, 3, 5, 8, 9, 10], function (num) {
return num % 2 === 0;
}),
8
);
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
`findElement([1, 3, 5, 9], function(num) { return num % 2 === 0; })` should return undefined.
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert.strictEqual(
findElement([1, 3, 5, 9], function (num) {
return num % 2 === 0;
}),
undefined
);
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
# --seed--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
## --seed-contents--
2018-09-30 23:01:58 +01:00
```js
function findElement(arr, func) {
let num = 0;
return num;
}
findElement([1, 2, 3, 4], num => num % 2 === 0);
```
2020-11-27 19:02:05 +01:00
# --solutions--
2018-09-30 23:01:58 +01:00
```js
function findElement(arr, func) {
2019-02-11 09:43:48 +05:30
return arr.filter(func)[0];
2018-09-30 23:01:58 +01:00
}
findElement([1, 2, 3, 4], num => num % 2 === 0);
```