check if array includes another array javascript code example

Example 1: javascript check if elements of one array are in another

const found = arr1.some(r=> arr2.includes(r))

Example 2: javascript array includes another array

const array1= ["cheese", "dough", "sauce", "pepperoni"]
const array2= ["mozzarella", "peppers", "chicken", "cheese"]

const isIncluded =  array1.some(value => array2.includes(value))
// true

const values = array1.filter(value => array2.includes(value))
// "cheese"

Example 3: if array ontains any item of another array js

const found = arr1.some(r=> arr2.indexOf(r) >= 0)