Reputation: 51937
I have two array ArrayA and ArrayB. Array B may have some values in it that belong to ArrayA. I'm looking to have ArrayB contain all the values of ArrayA. So far, this is what I have:
for (i=0 ; i < ArrayB.length; i++)
{
ArrayB = jQuery.grep(ArrayB, function (a) {
....
};
};
I'm having some trouble with this function. Please let me know if you have any suggestions. Thanks.
Upvotes: 1
Views: 184
Reputation: 47978
ArrayB = jQuery.grep(ArrayB, function (a,i){
return jQuery.inArray(a, ArrayA) != -1;
});
Upvotes: 1