Usuń wszystkie elementy jednej tablicy z innego JavaScript
a = a.filter(function (item) {
return b.indexOf(item) === -1;
});
Yellowed Yacare
a = a.filter(function (item) {
return b.indexOf(item) === -1;
});