So I have the following problem. I have two arrays of objects. Array1 contains many objects and Array2 contains a part of these objects:
array1: [{"first_name": "Wanda", 
          "id": 27, 
          "last_name": "Walhai"}, 
       
         {"first_name": "Victoria", 
          "id": 26, 
          "last_name": "Viperfisch"}]
array2: [{"first_name": "Victoria", 
          "id": 26, 
          "last_name": "Viperfisch"}]
And what I want to do is to delete all objects in array1 that array2 contains too (the duplicates). So the new array1 should look like this:
array1: [{"first_name": "Wanda", 
          "id": 27, 
          "last_name": "Walhai"}]
Can anybody help me to achieve this in javascript? Thanks a lot.
 
    