unique objects form array code example
Example 1: javascript unique array of objects by property
const array =
[
{ "name": "Joe", "age": 17 },
{ "name": "Bob", "age": 17 },
{ "name": "Carl", "age": 35 }
]
function uniqueByKey(array, key) {
return [...new Map(array.map((x) => [x[key], x])).values()];
}
console.log(uniqueByKey(array, 'age'));
Example 2: javascript get unique values from key
const unique = [...new Set(array.map(item => item.age))];