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 trialBert Witzel
Full Stack JavaScript Techdegree Graduate 27,918 PointsAnother 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 ]
1 Answer
Bert Witzel
Full Stack JavaScript Techdegree Graduate 27,918 PointsLooks good!
Mark Casavantes
2,880 PointsHello 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.
Mark Casavantes
2,880 PointsMark Casavantes
2,880 PointsHello Bert,
I do not know if this is what you were thinking of.