📌  相关文章
📜  javascript 获取两个数组中存在的元素 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:09.645000             🧑  作者: Mango

代码示例1
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"]