Answers for "how to find a unique a character in an array js"

8

find unique elements in array 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
7

unique values in array javascript

let uniqueItems = [...new Set(items)]
Posted by: Guest on September-06-2020

Code answers related to "how to find a unique a character in an array js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language