I have two different arrays in jQuery:
a = {1, 5, 3, 4}
b = {1, 4}
First obtain the intercepted values, they would be 1
, 4
. Then delete the intercepted values in the a
array, it would look like this:
a = {5, 3}
Any ideas?