mirror of
https://github.com/toss/es-toolkit.git
synced 2024-12-01 10:45:08 +03:00
e9ede74362
* Translate Simplified Chinese * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Update docs/.vitepress/shared.mts --------- Co-authored-by: Sojin Park <raon0211@gmail.com>
748 B
748 B
intersection
返回两个数组的交集。
该函数接受两个数组并返回一个新数组,该数组包含同时存在于两个数组中的元素。
它有效地过滤掉第一个数组中不在第二个数组中的元素。
签名
function intersection<T>(firstArr: T[], secondArr: T[]): T[];
参数
firstArr
(T[]
): 要比较的第一个数组。secondArr
(T[]
): 要比较的第二个数组。
返回值
(T[]
) 包含同时存在于两个数组中的元素的新数组。
示例
const array1 = [1, 2, 3, 4, 5];
const array2 = [3, 4, 5, 6, 7];
const result = intersection(array1, array2);
// 结果将是 [3, 4, 5] 因为这些元素在两个数组中都存在。