Function intersection

获取两个数组的交集

返回两个数组中都存在的元素。

const array1 = [1, 2, 3, 4]
const array2 = [3, 4, 5, 6]
const result = intersection(array1, array2)
console.log(result) // 输出 [3, 4]
  • Type Parameters

    • T

    Parameters

    • arr1: T[]

      数组1

    • arr2: T[]

      数组2

    Returns T[]

    两数组的交集