DEV Community

Discussion on: 5 Uses for the Spread Operator

Collapse
 
douglasbarbosadelima profile image
Douglas Barbosa de Lima

I like to use the Set Object with Spread Operator to display non-repeat data into Array:

const arr = [1, 2, 3, 1, 2, 3];
const newArr = [...new Set(arr)]; // [1, 2, 3]

Spread is a awesome feature.
Congratulations for the post!

Collapse
 
willvincent profile image
Will Vincent

Was going to leave the same comment :)

Collapse
 
proticm profile image
Milos Protic

Note that this only works if you have an array of primitive types

Collapse
 
laurieontech profile image
Laurie

Nice one!