Answers for "function to find an array 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
0

return elements of an array from another array javascript

var toBeFiltered = [1,2,3,4,5,6];
var elements = [6,3,2];
var filteredElements = toBeFiltered.filter(
    function(e) {
        return this.indexOf(e) >= 0;
    },
    elements
);

console.log(toBeFiltered);
console.log(elements);
console.log(filteredElements);
Posted by: Guest on June-07-2021

Code answers related to "function to find an array in another array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language