2018-10-04 14:37:37 +01:00
---
id: a10d2431ad0c6a099a4b8b52
title: Everything Be True
isRequired: true
challengeType: 5
2020-05-21 17:31:25 +02:00
isHidden: false
2019-07-31 11:32:23 -07:00
forumTopicId: 16011
2018-10-04 14:37:37 +01:00
---
## Description
< section id = 'description' >
Check if the predicate (second argument) is < dfn > truthy< / dfn > on all elements of a collection (first argument).
In other words, you are given an array collection of objects. The predicate < code > pre< / code > will be an object property and you need to return < code > true< / code > if its value is < code > truthy< / code > . Otherwise, return < code > false< / code > .
In JavaScript, < code > truthy< / code > values are values that translate to < code > true< / code > when evaluated in a Boolean context.
Remember, you can access object properties through either dot notation or < code > []< / code > notation.
< / section >
## Instructions
< section id = 'instructions' >
< / section >
## Tests
< section id = 'tests' >
```yml
tests:
- text: '< code > truthCheck([{"user": "Tinky-Winky", "sex": "male"}, {"user": "Dipsy", "sex": "male"}, {"user": "Laa-Laa", "sex": "female"}, {"user": "Po", "sex": "female"}], "sex")</ code > should return true.'
2019-07-27 21:16:04 -07:00
testString: 'assert.strictEqual(truthCheck([{"user": "Tinky-Winky", "sex": "male"}, {"user": "Dipsy", "sex": "male"}, {"user": "Laa-Laa", "sex": "female"}, {"user": "Po", "sex": "female"}], "sex"), true);'
2018-10-04 14:37:37 +01:00
- text: '< code > truthCheck([{"user": "Tinky-Winky", "sex": "male"}, {"user": "Dipsy"}, {"user": "Laa-Laa", "sex": "female"}, {"user": "Po", "sex": "female"}], "sex")</ code > should return false.'
2019-07-27 21:16:04 -07:00
testString: 'assert.strictEqual(truthCheck([{"user": "Tinky-Winky", "sex": "male"}, {"user": "Dipsy"}, {"user": "Laa-Laa", "sex": "female"}, {"user": "Po", "sex": "female"}], "sex"), false);'
2018-10-04 14:37:37 +01:00
- text: '< code > truthCheck([{"user": "Tinky-Winky", "sex": "male", "age": 0}, {"user": "Dipsy", "sex": "male", "age": 3}, {"user": "Laa-Laa", "sex": "female", "age": 5}, {"user": "Po", "sex": "female", "age": 4}], "age")</ code > should return false.'
2019-07-27 21:16:04 -07:00
testString: 'assert.strictEqual(truthCheck([{"user": "Tinky-Winky", "sex": "male", "age": 2}, {"user": "Dipsy", "sex": "male", "age": 0}, {"user": "Laa-Laa", "sex": "female", "age": 5}, {"user": "Po", "sex": "female", "age": 4}], "age"), false);'
2020-02-08 13:29:10 -05:00
- text: '< code > truthCheck([{"name": "Pete", "onBoat": true}, {"name": "Repeat", "onBoat": true}, {"name": "FastForward", "onBoat": null}], "onBoat")</ code > should return false'
testString: 'assert.strictEqual(truthCheck([{"name": "Pete", "onBoat": true}, {"name": "Repeat", "onBoat": true}, {"name": "FastForward", "onBoat": null}], "onBoat"), false);'
- text: '< code > truthCheck([{"name": "Pete", "onBoat": true}, {"name": "Repeat", "onBoat": true, "alias": "Repete"}, {"name": "FastForward", "onBoat": true}], "onBoat")</ code > should return true'
testString: 'assert.strictEqual(truthCheck([{"name": "Pete", "onBoat": true}, {"name": "Repeat", "onBoat": true, "alias": "Repete"}, {"name": "FastForward", "onBoat": true}], "onBoat"), true);'
2018-10-04 14:37:37 +01:00
- text: '< code > truthCheck([{"single": "yes"}], "single")</ code > should return true'
2019-07-27 21:16:04 -07:00
testString: 'assert.strictEqual(truthCheck([{"single": "yes"}], "single"), true);'
2018-10-04 14:37:37 +01:00
- text: '< code > truthCheck([{"single": ""}, {"single": "double"}], "single")</ code > should return false'
2019-07-27 21:16:04 -07:00
testString: 'assert.strictEqual(truthCheck([{"single": ""}, {"single": "double"}], "single"), false);'
2018-10-04 14:37:37 +01:00
- text: '< code > truthCheck([{"single": "double"}, {"single": undefined}], "single")</ code > should return false'
2019-07-27 21:16:04 -07:00
testString: 'assert.strictEqual(truthCheck([{"single": "double"}, {"single": undefined}], "single"), false);'
2018-10-04 14:37:37 +01:00
- text: '< code > truthCheck([{"single": "double"}, {"single": NaN}], "single")</ code > should return false'
2019-07-27 21:16:04 -07:00
testString: 'assert.strictEqual(truthCheck([{"single": "double"}, {"single": NaN}], "single"), false);'
2018-10-04 14:37:37 +01:00
```
< / section >
## Challenge Seed
< section id = 'challengeSeed' >
< div id = 'js-seed' >
```js
function truthCheck(collection, pre) {
return pre;
}
truthCheck([{"user": "Tinky-Winky", "sex": "male"}, {"user": "Dipsy", "sex": "male"}, {"user": "Laa-Laa", "sex": "female"}, {"user": "Po", "sex": "female"}], "sex");
```
< / div >
< / section >
## Solution
< section id = 'solution' >
```js
function truthCheck(collection, pre) {
return collection.every(function(e) { return e[pre]; });
}
```
< / section >