Answers for "from two arrays remove duplicate and form new array js"

95

js delete duplicates from array

const names = ['John', 'Paul', 'George', 'Ringo', 'John'];

let unique = [...new Set(names)];
console.log(unique); // 'John', 'Paul', 'George', 'Ringo'
Posted by: Guest on March-11-2020
2

remove duplicates from array javascript

arr.filter((v,i,a)=>a.findIndex(t=>(t.place === v.place && t.name===v.name))===i)
Posted by: Guest on September-10-2020

Code answers related to "from two arrays remove duplicate and form new array js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language