Answers for "compare two array and return same data javascript"

0

compare two arrays and return the difference javascript

let difference = arr1
                 .filter(x => !arr2.includes(x))
                 .concat(arr2.filter(x => !arr1.includes(x)));
Posted by: Guest on March-09-2021

Code answers related to "compare two array and return same data javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language