Answers for "JavaScript check if two arrays have same elements retunr new value"

6

check if array has same values javascript

const allEqual = arr => arr.every(v => v === arr[0]);
allEqual([1,1,1,1]);  // true
Posted by: Guest on May-27-2020
0

javascript get elements that exist in two arrays

function getArraysIntersection(a1,a2){
    return  a1.filter(function(n) { return a2.indexOf(n) !== -1;});
}
var colors1 = ["red","blue","green"];
var colors2 = ["red","yellow","blue"];
var intersectingColors=getArraysIntersection(colors1, colors2); //["red", "blue"]
Posted by: Guest on August-01-2019

Code answers related to "JavaScript check if two arrays have same elements retunr new value"

Code answers related to "Javascript"

Browse Popular Code Answers by Language