一个 JavaScript 程序,用于查找两个数组中的不同元素
比如说我们有两个数字数组 -
const arr1 = [12, 54, 2, 4, 6, 34, 3]; const arr2 = [54, 2, 5, 12, 4, 1, 3, 34];
我们需要编写一个 JavaScript 函数,它接收两个这样的数组并返回数组中不属于两个数组的元素。
让我们为这个函数编写代码 -
示例
代码如下 -
const arr1 = [12, 54, 2, 4, 6, 34, 3]; const arr2 = [54, 2, 5, 12, 4, 1, 3, 34]; const unCommonArray = (first, second) => { const res = []; for(let i = 0; i < first.length; i++){ if(second.indexOf(first[i]) === -1){ res.push(first[i]); } }; for(let j = 0; j < second.length; j++){ if(first.indexOf(second[j]) === -1){ res.push(second[j]); }; }; return res; }; console.log(unCommonArray(arr1, arr2));
输出
控制台中的输出如下 -
[ 6, 5, 1 ]
广告