Tambahkan array ke array lain dan hapus pencocokan

myArray = myArray.filter( function( el ) {
  return toRemove.indexOf( el ) < 0;
} );
T-DaMER