unique values in list javascript code example
Example 1: unique values in array javascript
let uniqueItems = [...new Set(items)]
Example 2: unique elements in array javascript
var array3 = [1, 2, 4, 6, 1, 4, 9, 10, 2, 8];
function findUniqueElements_3(array) {
for (let i = 0; i < array.length; i++) {
for (let j = i + 1; j < array.length; j++) {
if (array[i] == array[j]) {
array.splice(j, 1)
}
}
}
console.log(`from third way : ${array}`);
}
findUniqueElements_3(array3)