Answers for "how to distinct in javascript"

18

array unique values javascript

const myArray = ['a', 1, 'a', 2, '1'];
const unique = [...new Set(myArray)]; // ['a', 1, 2, '1']
Posted by: Guest on March-03-2020
0

how to get unique values from array in javascript without duplicate value

function uniqueArray2(arr) {
    var a = [];
    for (var i=0, l=arr.length; i<l; i++)
        if (a.indexOf(arr[i]) === -1 && arr[i] !== '')
            a.push(arr[i]);
    return a;
}
Posted by: Guest on June-19-2020

Code answers related to "how to distinct in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language