Returns elements from the first array that are not present in the second array
arrDiff([1, 2, 3, 4], [2, 3]);=> [1, 4]
First array
Second array
Generated using TypeDoc
Returns elements from the first array that are not present in the second array
Example