Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

how to remove duplicates in js

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

let unique = [...new Set(names)];
console.log(unique);
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #remove #duplicates #js
ADD COMMENT
Topic
Name
1+1 =