Удалить все элементы одного массива из другого JavaScript

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