Consider following arrays:
array1 = ['a','b'];
array2 = ['a','b','c','d'];
I need to extract the difference. So my resulting array should look something like,
array3 = ['c','d'];
If an element is present in array1 then it should be poped from array2. I am looking for solutions more angular way,is there any directive available?
var c = array2.filter(function(item) { return array1.indexOf(item) === -1; });