How can get all the items of array which do not exists another array?
I have one array with already selected values:
var selectedList = [1,2];
Another array with list of Objects like
var objList = [{Value:1, Name:'KL'},{Value:2, Name:'XYZ'},{Value:3, Name:'ABC'}];
I wanted result to be filter on value field of ObjList array and only those records come which do not exists in the selectedList.