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

javascript - Remove from array if not present in another array - Stack Overflow

programmeradmin2浏览0评论
var allowedIds = [1000, 1001, 1002, 1003, 1004];
var idsToCheck = [1000, 1001, 1005, 1006];

I'm looking to find a way to remove 1005 & 1006 from arrayToCheck as those ids are not in the allowedIds array

any help would be appreciated.

thanks!

var allowedIds = [1000, 1001, 1002, 1003, 1004];
var idsToCheck = [1000, 1001, 1005, 1006];

I'm looking to find a way to remove 1005 & 1006 from arrayToCheck as those ids are not in the allowedIds array

any help would be appreciated.

thanks!

Share Improve this question asked May 4, 2017 at 15:26 user5850963user5850963 1
  • do a array .filter on idstocheck.. you can filter out the values that is not present in allowedIds by using the .indexOf. – Jalil Commented May 4, 2017 at 15:33
Add a ment  | 

1 Answer 1

Reset to default 11

You can iterate over idsToCheck using Array.prototype.filter() to filter out all ids which are not in allowedIds. For example:

const checkedIds = idsToCheck.filter(id => allowedIds.includes(id));

Note: using ES6 features: arrow functions and Array.prototype.includes(). To use it in older browsers check for patibility.

Here is an alternative implementation with better browser patiblity:

var checkedIds = idsToCheck.filter(function(id) {
  return allowedIds.indexOf(id) > -1;
});
发布评论

评论列表(0)

  1. 暂无评论