javascript arry unique value code example

Example 1: 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']

Example 2: unique values in array javascript

let uniqueItems = [...new Set(items)]

Example 3: 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)

Tags:

Php Example