Skip to main content
Go to Latest
function intersect
import { intersect } from "https://deno.land/std@0.176.0/collections/intersect.ts";

Returns all distinct elements that appear at least once in each of the given arrays.

Examples

Example 1

import { intersect } from "https://deno.land/std@0.176.0/collections/intersect.ts";
import { assertEquals } from "https://deno.land/std@0.176.0/testing/asserts.ts";

const lisaInterests = ["Cooking", "Music", "Hiking"];
const kimInterests = ["Music", "Tennis", "Cooking"];
const commonInterests = intersect(lisaInterests, kimInterests);

assertEquals(commonInterests, ["Cooking", "Music"]);

Parameters

...arrays: (readonly T[])[]