remove duplicate content with filter method javascript code example
Example 1: javascript remove duplicate in arrays
function removeDuplicates(array) {
return array.filter((a, b) => array.indexOf(a) === b)
};
function removeDuplicates(array) {
let x = {};
array.forEach(function(i) {
if(!x[i]) {
x[i] = true
}
})
return Object.keys(x)
};
function removeDuplicates(array) {
array.splice(0, array.length, ...(new Set(array)))
};
function removeDuplicates(array) {
let a = []
array.map(x =>
if(!a.includes(x) {
a.push(x)
})
return a
};
/THIS SITE/ "https://dev.to/mshin1995/back-to-basics-removing-duplicates-from-an-array-55he#comments"
Example 2: use set to remove duplicates in javascript
const names = ['John', 'Paul', 'George', 'Ringo', 'John'];
let x = (names) => names.filter((v,i) => names.indexOf(v) === i)
x(names);