Hi All,
I have 2 arrays, A1 and A1 and in that I have have emails.
A1
[
"john.way@X.com",
"test.user2@X.com",
"test@X.com"
]
A2 =
[
"john.way@X.com",
"test@X.com"
]
Now I want to remove items which are present in A2 from A1 so the output will be
[
"test.user2@X.com"
]
How do I do this?