Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.7k views
in Technique[技术] by (71.8m points)

js 比较不同长度不同顺序的数组并取出不同的值

let arr1 = ["1","2","3"]
let arr2 = ["6","1","2","3"]

如上代码所示,比较arr1和arr2,并取出这个"6",这样子的代码该怎么写呢

在这里先谢谢各位大神们的解答了,小弟感激不尽!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

JS取出两个数组中的不同或相同元素

const arr1 = ["1","2","3"];
const arr2 = ["6","1","2","3"];
const result = arr1.concat(arr2).filter((value, index, arr) => {
   return  arr.indexOf(value) === arr.lastIndexOf(value);
});
console.log(result); // ["6"]

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...