2018-10-10 18:03:03 -04:00
---
id: 587d7dab367417b2b2512b6f
2021-02-06 04:42:36 +00:00
title: Use the some Method to Check that Any Elements in an Array Meet a Criteria
2018-10-10 18:03:03 -04:00
challengeType: 1
2020-08-05 16:38:04 +08:00
forumTopicId: 301314
2021-01-13 03:31:00 +01:00
dashedName: use-the-some-method-to-check-that-any-elements-in-an-array-meet-a-criteria
2018-10-10 18:03:03 -04:00
---
2020-12-16 00:37:30 -07:00
# --description--
2021-02-06 04:42:36 +00:00
The `some` method works with arrays to check if *any* element passes a particular test. It returns a Boolean value - `true` if any of the values meet the criteria, `false` if not.
2020-12-16 00:37:30 -07:00
2021-02-06 04:42:36 +00:00
For example, the following code would check if any element in the `numbers` array is less than 10:
2020-08-05 16:38:04 +08:00
```js
var numbers = [10, 50, 8, 220, 110, 11];
numbers.some(function(currentValue) {
return currentValue < 10 ;
});
// Returns true
```
2020-12-16 00:37:30 -07:00
# --instructions--
2018-10-10 18:03:03 -04:00
2021-02-06 04:42:36 +00:00
Use the `some` method inside the `checkPositive` function to check if any element in `arr` is positive. The function should return a Boolean value.
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
Your code should use the `some` method.
2018-10-10 18:03:03 -04:00
2020-12-16 00:37:30 -07:00
```js
assert(code.match(/\.some/g));
2018-10-10 18:03:03 -04:00
```
2021-02-06 04:42:36 +00:00
`checkPositive([1, 2, 3, -4, 5])` should return `true` .
2018-10-10 18:03:03 -04:00
```js
2020-12-16 00:37:30 -07:00
assert(checkPositive([1, 2, 3, -4, 5]));
2018-10-10 18:03:03 -04:00
```
2021-02-06 04:42:36 +00:00
`checkPositive([1, 2, 3, 4, 5])` should return `true` .
2018-10-10 18:03:03 -04:00
2020-12-16 00:37:30 -07:00
```js
assert(checkPositive([1, 2, 3, 4, 5]));
```
2018-10-10 18:03:03 -04:00
2021-02-06 04:42:36 +00:00
`checkPositive([-1, -2, -3, -4, -5])` should return `false` .
2018-10-10 18:03:03 -04:00
```js
2020-12-16 00:37:30 -07:00
assert(!checkPositive([-1, -2, -3, -4, -5]));
2018-10-10 18:03:03 -04:00
```
2020-08-05 16:38:04 +08:00
2021-01-13 03:31:00 +01:00
# --seed--
## --seed-contents--
```js
function checkPositive(arr) {
// Only change code below this line
// Only change code above this line
}
checkPositive([1, 2, 3, -4, 5]);
```
2020-12-16 00:37:30 -07:00
# --solutions--
2021-01-13 03:31:00 +01:00
```js
function checkPositive(arr) {
// Only change code below this line
return arr.some(elem => elem > 0);
// Only change code above this line
}
checkPositive([1, 2, 3, -4, 5]);
```