Answers for "find match value in two object"

0

find match value in two object

var currentRef = currentQuestions.map(function(item){
     return item.Ref;
});

$scope.Questions = availableQuestions.filter(function(item){
     return currentRef.indexOf(item.Ref) === -1;
});
Posted by: Guest on March-25-2020

Code answers related to "find match value in two object"

Code answers related to "Javascript"

Browse Popular Code Answers by Language