2018-09-30 23:01:58 +01:00
---
id: 587d7dab367417b2b2512b6e
title: Use the every Method to Check that Every Element in an Array Meets a Criteria
challengeType: 1
2019-08-05 09:17:33 -07:00
forumTopicId: 301312
2018-09-30 23:01:58 +01:00
---
2020-11-27 19:02:05 +01:00
# --description--
The `every` method works with arrays to check if *every* element passes a particular test. It returns a Boolean value - `true` if all values meet the criteria, `false` if not.
For example, the following code would check if every element in the `numbers` array is less than 10:
2019-05-17 06:20:30 -07:00
```js
var numbers = [1, 5, 8, 0, 10, 11];
numbers.every(function(currentValue) {
return currentValue < 10 ;
});
// Returns false
```
2020-11-27 19:02:05 +01:00
# --instructions--
Use the `every` method inside the `checkPositive` function to check if every element in `arr` is positive. The function should return a Boolean value.
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
Your code should use the `every` method.
```js
assert(code.match(/\.every/g));
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
`checkPositive([1, 2, 3, -4, 5])` should return `false` .
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert.isFalse(checkPositive([1, 2, 3, -4, 5]));
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
`checkPositive([1, 2, 3, 4, 5])` should return `true` .
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert.isTrue(checkPositive([1, 2, 3, 4, 5]));
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
`checkPositive([1, -2, 3, -4, 5])` should return `false` .
```js
assert.isFalse(checkPositive([1, -2, 3, -4, 5]));
```
# --seed--
## --seed-contents--
2018-09-30 23:01:58 +01:00
```js
function checkPositive(arr) {
2020-03-08 07:46:28 -07:00
// Only change code below this line
2018-10-08 01:01:53 +01:00
2020-03-08 07:46:28 -07:00
// Only change code above this line
2018-09-30 23:01:58 +01:00
}
checkPositive([1, 2, 3, -4, 5]);
```
2020-11-27 19:02:05 +01:00
# --solutions--
2018-09-30 23:01:58 +01:00
```js
2019-04-28 02:01:14 -07:00
function checkPositive(arr) {
2020-03-08 07:46:28 -07:00
// Only change code below this line
2019-04-28 02:01:14 -07:00
return arr.every(num => num > 0);
2020-03-08 07:46:28 -07:00
// Only change code above this line
2019-04-28 02:01:14 -07:00
}
checkPositive([1, 2, 3, -4, 5]);
2018-09-30 23:01:58 +01:00
```