unique array of arrays javascript code example
Example 1: javascript find unique values in array
var myArray = ['a', 1, 'a', 2, '1'];
var unique = myArray.filter((v, i, a) => a.indexOf(v) === i);
Example 2: how to find unique elements in array in javascript
let a = ["1", "1", "2", "3", "3", "1"];
let unique = a.filter((item, i, ar) => ar.indexOf(item) === i);
console.log(unique);
Example 3: array with unique values javascript
let uniqueItems = [...new Set(items)]
Example 4: 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)