Returns a generator of array values not included in the other given arrays using a Set for equality comparisons. The order and references of result values are not guaranteed.
Set
[...difference([2, 1], [2, 3])]// [1]
Rest
The initial arrays
Generated using TypeDoc
Returns a generator of array values not included in the other given arrays using a
Set
for equality comparisons. The order and references of result values are not guaranteed.Example
See