import { intersect } from "https://dotland.deno.dev/std@0.181.0/collections/intersect.ts";
Returns all distinct elements that appear at least once in each of the given arrays.
Examples
Example 1
Example 1
import { intersect } from "https://deno.land/std@0.181.0/collections/intersect.ts";
import { assertEquals } from "https://deno.land/std@0.181.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[])[]