最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Javascript - Find 2 items in array? - Stack Overflow

programmeradmin2浏览0评论

Using find in Javascript, how can I find 2 items 10 and 18 from the array?

var ages = [3, 10, 18, 20];
ages.find(age => age === 10); // works on one item, returns 10
ages.find(age => age === (10 || 18)); // does not return 10 and 18

Using find in Javascript, how can I find 2 items 10 and 18 from the array?

var ages = [3, 10, 18, 20];
ages.find(age => age === 10); // works on one item, returns 10
ages.find(age => age === (10 || 18)); // does not return 10 and 18
Share Improve this question asked Jan 20, 2017 at 22:04 WonkaWonka 8,68422 gold badges82 silver badges126 bronze badges 4
  • 1 age === 10 || age === 18 – user1106925 Commented Jan 20, 2017 at 22:07
  • 1 Or did you mean you want the result to contain both items? I assumed you meant either of two. – user1106925 Commented Jan 20, 2017 at 22:08
  • yup, both items. I guess filter it is for multiple :) – Wonka Commented Jan 20, 2017 at 22:10
  • 2 Yep, filter() is the way to go then. Be aware that if no result is found, you'll get an empty Array instead of undefined. So you can check its .length to see if it contains any matches. – user1106925 Commented Jan 20, 2017 at 22:11
Add a ment  | 

5 Answers 5

Reset to default 5

I would create another array that holds the possible ages you are looking for. This is going to be easier to read and maintain than or statements.

var ages = [3, 10, 18, 20];
var criteria = [10, 18];

let found = ages.filter(age => criteria.includes(age));
console.log(found);


As pointed out by @Flavio Ochoa, Array.includes may not be supported in legacy browsers. If you're worried about support, or are not using a polyfill for Array.includes, you can just use Array.indexOf instead:

ages.filter(age => criteria.indexOf(age) > -1);

You can make use of the filter method which returns the elements which matches the predicate.The filter() method creates a new array with all elements that pass the test implemented by the provided function.

The find method returns the first element in the array that satisfies the condition. So, using find, you wouldn't be able to return more than 1 element.

Also, the parison is wrong in your code,
instead of age === (10 || 18)
use age === 10 || age === 18)

var ages = [3, 10, 18, 20];
var result = ages.filter(age => age === 10 || age === 18);
console.log(result);

First,

age === (10 || 18)

is wrong (it checks only age === 10), you need

age === 10 || age === 18

for checking, second use Array#filter to get an array with the result.

var ages = [3, 10, 18, 20];
console.log(ages.filter(age => age === 10 || age === 18));

You can't. At least not with just one call.

(emphasis mine)

The find() method returns a value of the first element in the array that satisfies the provided testing function. Otherwise undefined is returned.

Source

A better way of approaching this would be to use filter.

var ages = [3, 10, 18, 20];
console.log(ages.filter(age => age === 10 || age === 18));

The accepted answers are fine, but they are slow if the arrays are big.

If you only need to find the first 2 items that match, you can use this solution:

let a = null, b = null;
for (let age of ages) {
  if (age === 10) {
    a = age
  }
  else if(age === 18){
    b = age
  }

  if(a != null && b != null){
    break;
  }
}

In the worst case, it will iterate the ages array entirely once.

发布评论

评论列表(0)

  1. 暂无评论