добавить массив в другой массив и удалить соответствующий
myArray = myArray.filter( function( el ) {
return toRemove.indexOf( el ) < 0;
} );
T-DaMER
myArray = myArray.filter( function( el ) {
return toRemove.indexOf( el ) < 0;
} );