I have two arrays, Array1 has roughly 500 Date() objects in it. Array2 has about 200 Date() objects. All of these dates are separate instances but Array2 Date() objects will have a matching Date() in Array1.
I need to remove the contents of Array2 from the contents of Array1.
I have considered creating a separate array of unix timestamps from array1 for comparison, but I was hoping there was an easier/more efficient way of doing this.