Assuming we have:
array1 = ['A', 'B', 'C', 'D', 'E']; array2 = ['C', 'E'];
Is there a proven and fast solution to compare two arrays against each other, returning one array without the values appearing in both arrays (C and E here). So:
array3 = ['A', 'B', 'D']
should be the output of the solution. (jquery may be involved)
thx.