Answers for "how to get unique values in array of objects in react js"

2

unique array javascript es6 Map

const data = [
  { group: 'A', name: 'SD' }, 
  { group: 'B', name: 'FI' }, 
  { group: 'A', name: 'MM' },
  { group: 'B', name: 'CO'}
];
const unique = [...new Set(data.map(item => item.group))]; // [ 'A', 'B']
Posted by: Guest on September-14-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 "how to get unique values in array of objects in react js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language