Answers for "merge two arrays and remove duplicates in javascript es6"

6

javascript remove duplicate in two arrays

array1 = array1.filter(function(val) {
  return array2.indexOf(val) == -1;
});
// Or, with the availability of ES6:

array1 = array1.filter(val => !array2.includes(val));
Posted by: Guest on April-27-2020
-1

remove duplicate array es6

let a = [10,20,30,10,30];
let b = a.filter((item,index) => a.indexOf(item) === index);
console.log(b);
Posted by: Guest on November-23-2020

Code answers related to "merge two arrays and remove duplicates in javascript es6"

Code answers related to "Javascript"

Browse Popular Code Answers by Language