I have an array like this:
var data = [
{ Group: 'A', Name: 'SD' },
{ Group: 'B', Name: 'FI' },
{ Group: 'A', Name: 'MM' },
{ Group: 'B', Name: 'CO' }
];
I want to get only the unique Group values in an array like:
var unique = ['A','B'];
I looked at some of the examples on SO but I don't understand them. Can anyone tell me how I should do this?