JavaScript Array - Filter out values that do not match specific strings - Stack Overflow

I am trying to loop through an array and filter out all the items that do not match specific values.For

I am trying to loop through an array and filter out all the items that do not match specific values.

For example I have this array:

const emails = ["[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]"];

I would like to filter out emails that end in"

*@hotmail *@gmail


I have given it a go and got this but this doesn't work:

const filtered = emails.filter((email) => {
  return !email.includes('@hotmail') || !email.includes('@gmail');
});

The preferred output from the example above would be:

["[email protected]", "[email protected]", "[email protected]"]

I am trying to loop through an array and filter out all the items that do not match specific values.

For example I have this array:

const emails = ["[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]"];

I would like to filter out emails that end in"

*@hotmail. *@gmail.


I have given it a go and got this but this doesn't work:

const filtered = emails.filter((email) => {
  return !email.includes('@hotmail.') || !email.includes('@gmail.');
});

The preferred output from the example above would be:

["[email protected]", "[email protected]", "[email protected]"]
Share Improve this question asked Jan 27, 2017 at 12:58 user3180997user3180997 1,9263 gold badges21 silver badges37 bronze badges 1
  • What about return !(email.endsWith('@hotmail.') || email.endsWith('@gmail.'))? – sehrob Commented Jan 27, 2017 at 13:00
Add a ment  | 

1 Answer 1

Reset to default 10

Replace the or || with an and &&

If you select all emails which do not contain hotmail OR do not contain gmail, you'll get all of them which don't contain both which isn't your objective.
You want to get all of those that do not contain both hotmail and gmail instead!

const filtered = emails.filter((email) => {
  return !email.includes('@hotmail.') && !email.includes('@gmail.');
});

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743654398a4485123.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信