How to remove duplicate elements from array JavaScript

2 Answers

0 votes
let arr = [3, 4, 2, 3, 3, 2, 5, 6, 5, 5, 5, 7, 8, 8, 8, 9, 1, 1, 1, 1, 1];

arr = [...new Set(arr)];

console.log(arr);


     
     
     
/*
run:
     
[3, 4, 2, 5, 6, 7, 8, 9, 1]
     
*/

 



answered May 28, 2021 by avibootz
0 votes
let arr = ['javascript','java','php','c','c++','c','c++','php','php'];

arr = [...new Set(arr)];

console.log(arr);


     
     
     
/*
run:
     
["javascript", "java", "php", "c", "c++"]
     
*/

 



answered May 28, 2021 by avibootz
...