Answers for "unique array of arrays javascript"

5

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);
Posted by: Guest on May-17-2020
16

javascript find unique values in array

// usage example:
var myArray = ['a', 1, 'a', 2, '1'];
var unique = myArray.filter((v, i, a) => a.indexOf(v) === i); 

// unique is ['a', 1, 2, '1']
Posted by: Guest on February-28-2020
0

array with unique values javascript

let uniqueItems = [...new Set(items)]
Posted by: Guest on December-10-2020
0

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)
Posted by: Guest on April-25-2021

Code answers related to "unique array of arrays javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language