Resolved! How to compare two arrays and get unique values
Hi, I have 2 arrays. I need to get the users not present in the other array. I am using the below code I am able to get unique users but there are duplicates in it. var arrCapUsers = ["a","b","c","d","e"]; var arrGrpUsers = ["a","b","c","d","e","f","...
