0 votes
in JavaScript by
How do you get unique values of an array in Javascript?

1 Answer

0 votes
by

You can get unique values of an array with the combination of Set and rest expression/spread(...) syntax.

console.log([...new Set([1, 2, 4, 4, 3])]); // [1, 2, 4, 3]
...