How to find unique value with id in JavaScript? right now I'm getting just value.
I'm getting:-
[
"Care One",
"Care Two"
]
I need:-
[
{
"Source_ID": 1,
"SourceName_CR": "Care One"
},
{
"Source_ID": 2,
"SourceName_CR": "Care Two"
}
]
My code:-
const body = [
{
Field_ID: 1,
FieldName_CR: "First Name",
Source_ID: 1,
SourceName_CR: "Care One"
},
{
Field_ID: 2,
FieldName_CR: "Last Name",
Source_ID: 1,
SourceName_CR: "Care One"
}, {
Field_ID: 3,
FieldName_CR: "Phone",
Source_ID: 2,
SourceName_CR: "Care Two"
},
{
Field_ID: 4,
FieldName_CR: "Email",
Source_ID: 2,
SourceName_CR: "Care Two"
}, ];
console.log([...new Set(body.map(item => item.SourceName_CR))]);