For example I have this array:
0: {myfield: "1f974a20-aa59-11e8-9653-ab3419ed3bc9", order: 0, value: ""}
1: {myfield: "1f974a20-aa59-11e8-9666-ab3419ed3bc9", order: 0, value: ""}
2: {myfield: "1f974a20-aa59-11e8-9653-ab3419ed3bc9", order: 0, value: "One"}
3: {myfield: "af7401a0-aa6e-11e8-9653-ab3419ed3bc9", order: 1, value: "Two"}
I wanna be able to loop through it and pop/remove older version of duplicated array, in this example I wanted to keep Object 2 and pop/remove Object 0 since they both have exact same myfield
Would it be possible to do this using lodash?