Hapus semua elemen dari satu array dari javascript lain

a = a.filter(function (item) {
    return b.indexOf(item) === -1;
});
Yellowed Yacare