Answers for "array list unqieu value nodejs"

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
3

javascript get unique values from key

const unique = [...new Set(array.map(item => item.age))];
Posted by: Guest on June-05-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language