2018-10-10 18:03:03 -04:00
|
|
|
|
---
|
|
|
|
|
id: 587d7dab367417b2b2512b6e
|
2020-12-16 00:37:30 -07:00
|
|
|
|
title: 使用 every 方法检查数组中的每个元素是否符合条件
|
2018-10-10 18:03:03 -04:00
|
|
|
|
challengeType: 1
|
2020-08-05 16:38:04 +08:00
|
|
|
|
forumTopicId: 301312
|
2021-01-13 03:31:00 +01:00
|
|
|
|
dashedName: use-the-every-method-to-check-that-every-element-in-an-array-meets-a-criteria
|
2018-10-10 18:03:03 -04:00
|
|
|
|
---
|
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
# --description--
|
|
|
|
|
|
|
|
|
|
`every`方法用于检测数组中*所有*元素是否都符合指定条件。如果所有元素满足条件,返回布尔值`true`,反之返回`false`。
|
|
|
|
|
|
|
|
|
|
举个例子,下面的代码检测数组`numbers`的所有元素是否都小于 10:
|
2020-08-05 16:38:04 +08:00
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
var numbers = [1, 5, 8, 0, 10, 11];
|
|
|
|
|
numbers.every(function(currentValue) {
|
|
|
|
|
return currentValue < 10;
|
|
|
|
|
});
|
|
|
|
|
// Returns false
|
|
|
|
|
```
|
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
# --instructions--
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
在`checkPositive`函数中使用`every`方法检查`arr`中是否所有元素都是正数,函数应返回一个布尔值。
|
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
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
应使用`every`方法。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
```js
|
|
|
|
|
assert(code.match(/\.every/g));
|
2018-10-10 18:03:03 -04:00
|
|
|
|
```
|
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
`checkPositive([1, 2, 3, -4, 5])`应返回`false`。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
|
|
```js
|
2020-12-16 00:37:30 -07:00
|
|
|
|
assert.isFalse(checkPositive([1, 2, 3, -4, 5]));
|
2018-10-10 18:03:03 -04:00
|
|
|
|
```
|
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
`checkPositive([1, 2, 3, 4, 5])`应返回`true`。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
```js
|
|
|
|
|
assert.isTrue(checkPositive([1, 2, 3, 4, 5]));
|
|
|
|
|
```
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
`checkPositive([1, -2, 3, -4, 5])`应返回`false`。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
|
|
```js
|
2020-12-16 00:37:30 -07:00
|
|
|
|
assert.isFalse(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.every(num => num > 0);
|
|
|
|
|
// Only change code above this line
|
|
|
|
|
}
|
|
|
|
|
checkPositive([1, 2, 3, -4, 5]);
|
|
|
|
|
```
|