Hello
I have an array that looks like this called array 1
[
{
"claims":"user1"
},
{
"claims":"user2"
},
{
"claims":"user3"
}
]
I have a separate array variable called array 2 with the following
[
{
"claims":"user2"
}
]I would like to compare the array 2 with array 1 to see if 'user 2' is in that array 1, if they are, I would like to remove them from that array
Thanks for your help!