Returns a tuple with the difference between two arrays.
The type of the elements in the arrays.
Left array.
Right array.
Tuple with two arrays: one with elements present in the left array but not in the right, and the other with elements present in the right array but not in the left.
import { chunked } from '@pacote/array'difference(['a', 'b'], ['b', 'c']) // => [['a'], ['c']] Copy
import { chunked } from '@pacote/array'difference(['a', 'b'], ['b', 'c']) // => [['a'], ['c']]
Returns a tuple with the difference between two arrays.