Answers for "how to check all elements in array includes in another array javascript"

5

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"
Posted by: Guest on June-09-2021
9

javascript check if elements of one array are in another

const found = arr1.some(r=> arr2.includes(r))
Posted by: Guest on March-26-2020
1

if array ontains any item of another array js

const found = arr1.some(r=> arr2.indexOf(r) >= 0)
Posted by: Guest on March-01-2021
0

how to check all elements in array includes in another array javascript

// how to check all elements in array includes in another array javascript
const includesAll = (arr, values) => values.every(v => arr.includes(v));
includesAll([1, 2, 3, 4], [1, 4]); // true
includesAll([1, 2, 3, 4], [1, 5]); // false
Posted by: Guest on January-03-2022
0

How to check if array includes a value from another array in JavaScript

// How to check if array includes a value from another array in JavaScript
const includesAny = (arr, values) => values.some(v => arr.includes(v));
includesAny([1, 2, 3, 4], [2, 9]); // true
includesAny([1, 2, 3, 4], [8, 9]); // false
Posted by: Guest on January-02-2022

Code answers related to "how to check all elements in array includes in another array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language