Answers for "javascript find all different values in array"

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
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 find all different values in array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language