javascript do arrays intersect
let intersection = arrA.filter(x => arrB.includes(x));
javascript do arrays intersect
let intersection = arrA.filter(x => arrB.includes(x));
javascript get intersection of 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"]
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us