FrontendDeveloper.in

JavaScript question detail

How do you get unique values of an array

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]
Back to all JavaScript questions
Get LinkedIn Premium at Rs 399