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

javascript - Iterating and filtering with ES6lodash - Stack Overflow

programmeradmin1浏览0评论

We have an array of objects like:

const persons = [{
    name: "john",
    age: 23
}, {
    name: "lisa",
    age: 43
}, {
    name: "jim",
    age: 101
}, {
    name: "bob",
    age: 67
}];

And an array of a attribute values of the objects in object

const names = ["lisa", "bob"]

How can we find persons with name in the names array using es6, like:

const filteredPersons = [{
    name: "lisa",
    age: 43
}, {
    name: "bob",
    age: 67
}];

We have an array of objects like:

const persons = [{
    name: "john",
    age: 23
}, {
    name: "lisa",
    age: 43
}, {
    name: "jim",
    age: 101
}, {
    name: "bob",
    age: 67
}];

And an array of a attribute values of the objects in object

const names = ["lisa", "bob"]

How can we find persons with name in the names array using es6, like:

const filteredPersons = [{
    name: "lisa",
    age: 43
}, {
    name: "bob",
    age: 67
}];
Share Improve this question edited Apr 17, 2018 at 7:03 Narendra Jadhav 10.3k15 gold badges34 silver badges44 bronze badges asked Apr 17, 2018 at 6:49 kalladakallada 1,9296 gold badges38 silver badges72 bronze badges
Add a ment  | 

6 Answers 6

Reset to default 4

ES6

Use filter function with predicate and in it check the existence of the name in the names array.

const persons = [
    {name: "john", age:23},
    {name: "lisa", age:43},
    {name: "jim", age:101},
    {name: "bob", age:67}
];

const names = ["lisa", "bob"];

const filtered = persons.filter(person => names.includes(person.name));

console.log(filtered);

You can use filter() and inlcudes() to get required result.

DEMO

const persons = [{
  name: "john",
  age: 23
}, {
  name: "lisa",
  age: 43
}, {
  name: "jim",
  age: 101
}, {
  name: "bob",
  age: 67
}];
const names = ["lisa", "bob"];

console.log(persons.filter(({
  name
}) => names.includes(name)))
.as-console-wrapper { max-height: 100% !important; top: 0; }

I would suggest to use indexOf as includes does not work in IE browser. Also, using {name} works as Destructuring assignment that will hold the value of name property of the object.

const persons = [{
  name: "john",
  age: 23
}, {
  name: "lisa",
  age: 43
}, {
  name: "jim",
  age: 101
}, {
  name: "bob",
  age: 67
}];
const names = ["lisa", "bob"];

console.log(persons.filter(({name}) => names.indexOf(name) !== -1))

lodash

You can try following

const persons = [{name: "john", age: 23},
    {name: "lisa",age: 43}, 
    {name: "jim", age: 101}, 
    {name: "bob",age: 67}];


const names = ["lisa", "bob"]


const filteredPersons = _.filter(persons, function(person) {
    return _.indexOf(names, person.name) !== -1;
});

console.log(filteredPersons);
<script src="https://cdnjs.cloudflare./ajax/libs/lodash.js/3.10.1/lodash.js"></script>

In case you want to perform it in n plexity, here is a way to do it:

  1. Create a map with key as person's name and value as person's object.
  2. Map the criteria array and extract the person objects from the map create in step 1.

Here is a working demo:

const persons = [{
  name: "john",
  age: 23
}, {
  name: "lisa",
  age: 43
}, {
  name: "jim",
  age: 101
}, {
  name: "bob",
  age: 67
}];

const names = ["lisa", "bob"];
const map = persons.reduce((acc, item) => {
  acc[item.name] = item;
  return acc;
}, {});
const result = names.map(name => map[name]);
console.log(result);

Note: This solution assumes that only unique person names are in the source array. It needs to be tweaked to handle duplicates.

See Closures, Set, and Array.prototype.filter() for more info.

// Input.
const persons = [{name: "john",age: 23}, {name: "lisa",age: 43}, {name: "jim",age: 101}, {name: "bob",age: 67}]
const names = ["lisa", "bob"]

// Filter.
const filter = (A, B) => (s => A.filter(x => s.has(x.name)))(new Set(B))

// Output.
const output = filter(persons, names)

// Proof.
console.log(output)

发布评论

评论列表(0)

  1. 暂无评论