How to remove duplicates in an array in JavaScript
May 8, 2020
Let’s say you have this array:
const myArray = ["red", "blue", "green", "blue", "blue", "orange", "green"]
But you only want each item to appear once.
Here’s how you turn that array into an array where each item only appears once.
const uniqueArray = [...new Set(myArray)]
Subscribe to my newsletter!
A weekly round-up of new blog posts and updates to projects I’m working on.