compare differences between two arrays code example
Example: Diff Two Arrays
const diffArray = (arr1, arr2) => {
// Store the different elements
const diffArray = []
// Concat both arrays
const uniqueArr = [...new Set([...arr1, ...arr2])];
// OR const uniqueArr = [...new Set(arr1.concat(...arr2))]
// Loop through the unique array and confirm that each element in it
// is in both arrays(arr1,arr2), else push element not found in both
// arrays to the diffArray and return it
uniqueArr.forEach(elem => {
if(!arr1.includes(elem) || !arr2.includes(elem))
diffArray.push(elem)
})
return diffArray
}
diffArray([1, 2, 3, 5], [1, 2, 3, 4, 5]);
// With love @kouqhar