let activeIds = [202, 204]
let serviceList = [{
"id":201,
"title":"a"
},
{
"id":202,
"title":"a"
},
{
"id":203,
"title":"c"
},
{
"id":204,
"title":"d"
},
{
"id":205,
"title":"e"
}];
for(let i=0;i<serviceList.length;i++){
let itemArray = activeIds.filter(item => item.ItemInternalId.value === serviceList[i].InternalID.value);
}