เราจำเป็นต้องเขียนฟังก์ชัน JavaScript ที่รับอาร์เรย์ Number และส่งกลับองค์ประกอบจากอาร์เรย์ที่ไม่เหมือนกับทั้งสองอย่าง
ตัวอย่างเช่น ถ้าอาร์เรย์ทั้งสองเป็น −
const arr1 = [2, 4, 2, 4, 6, 4, 3]; const arr2 = [4, 2, 5, 12, 4, 1, 3, 34];
ผลลัพธ์
จากนั้นผลลัพธ์ควรเป็น −
const output = [ 6, 5, 12, 1, 34 ]
ตัวอย่าง
รหัสสำหรับสิ่งนี้จะเป็น −
const arr1 = [2, 4, 2, 4, 6, 4, 3]; const arr2 = [4, 2, 5, 12, 4, 1, 3, 34]; const deviations = (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(deviations(arr1, arr2));
ผลลัพธ์
เอาต์พุตในคอนโซล −
[6, 5, 12, 1, 34 ]