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
1 Answer
Reset to default 10Replace 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条)