Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript JavaScript Array Iteration Methods Combining Array Methods Chaining Array Methods

Another way to remove duplicates from an array

const numbers = [1, 1, 2, 3, 4, 3, 5, 5, 6, 7, 3, 8, 9, 10];
const unique = [...new Set(numbers)];
console.log(unique);

treehouse:~/workspace$ node iteration.js                              
[ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ]    
Mark Casavantes
Mark Casavantes
2,880 Points

Hello Bert,

I do not know if this is what you were thinking of.

let chars = [
  "1",
  "1",
  "2",
  "3",
  "4",
  "3",
  "5",
  "5",
  "6",
  "7",
  "3",
  "8",
  "9",
  "10"
];
let uniqueChars = [...new Set(chars)];

console.log(uniqueChars);

1 Answer

Looks good!

Mark Casavantes
Mark Casavantes
2,880 Points

Hello Bert,

I am using strings, I changed how the array is presented, I changed const to let. I was not sure what you were looking for. I was trying to be helpful. My solution is a different way to remove duplicates from an array.