We're a place where coders share, stay up-to-date and grow their careers.
Here's a super easy way to remove duplicates from an array (by using the definition of a Set)!
const unique = (arr) => [...new Set(arr)] // [1, 2, 3, 4, 5] console.log(unique([1, 1, 2, 3, 4, 5, 5]))
Yup that's a good one, although I already have it up top 😺 .
Oh haha, didn't see that one!
Here's a super easy way to remove duplicates from an array (by using the definition of a Set)!
Yup that's a good one, although I already have it up top 😺 .
Oh haha, didn't see that one!