I have a data set that looks as such:
const data = [{
"First Name" : "John"
"Last Name": "Doe"
"Cars Sold": 2
},
{
"First Name" : "John"
"Last Name": "Doe"
"Cars Sold": 1
},
{
"First Name" : "Jane"
"Last Name": "Doe"
"Cars Sold": 3
}];
How would i go about filtering this to get a list of all the people in the object? i.e. the output should be a list of unique people (combination of first and last name) in the object.
Thanks