获取数组的差集
返回 arr1 中存在但 arr2 中不存在的元素。
const array1 = [1, 2, 3, 4]const array2 = [3, 4, 5, 6]const result = difference(array1, array2)console.log(result) // 输出 [1, 2] Copy
const array1 = [1, 2, 3, 4]const array2 = [3, 4, 5, 6]const result = difference(array1, array2)console.log(result) // 输出 [1, 2]
数组1
数组2
差集数组
获取数组的差集
返回 arr1 中存在但 arr2 中不存在的元素。
Example