difference between two arrays.
Hi, I would like to have the difference between two arrays
for example :
A = ['a','b','c']
B =['b'] <--- B is always included in A
my result C == A - B == ['a','c']
Here is my jsfiddle :
I would like an array that has this difference :
data-restagencies - data-agencies
when this button is clicked :
- $('button.btn').on('click', function () {
Thanks