You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
301 B
JavaScript

"use strict";
const doArraysIntersect = require("./");
let arrayA = [1, 3, 4, 6, 7, 8];
let arrayB = [2, 5, 6, 8, 9];
console.log(doArraysIntersect(arrayA, arrayB)); // true
let arrayC = [1, 3, 4, 6, 7, 8];
let arrayD = [2, 5, 9, 10, 11];
console.log(doArraysIntersect(arrayC, arrayD)); // false