Dodaj tablicę do innej tablicy i usuń dopasowanie
myArray = myArray.filter( function( el ) {
return toRemove.indexOf( el ) < 0;
} );
T-DaMER
myArray = myArray.filter( function( el ) {
return toRemove.indexOf( el ) < 0;
} );