Answers for "counting unique values in 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

Code answers related to "counting unique values in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language