Creates an array of array values not included in the other given arrays.
Optional
difference([2, 1], [2, 3])// [1]difference([2, 1], ['2', '3'], (a, b) => a === parseInt(b))// [1] Copy
difference([2, 1], [2, 3])// [1]difference([2, 1], ['2', '3'], (a, b) => a === parseInt(b))// [1]
Creates an array of array values not included in the other given arrays.