I have following JSON array I want to create object form status key count
[
{
"id": "65:0",
"status": "ORANGE"
},
{
"id": "65:0",
"status": "GREEN"
},
{
"id": "65:0",
"status": "ORANGE"
},
{
"id": "65:0",
"status": "YELLOW"
},
{
"id": "65:0",
"status": "RED"
},
{
"id": "65:0",
"status": "GREEN"
},
{
"id": "65:0",
"status": "GREEN"
},
{
"id": "65:0",
"status": "ORANGE"
},
{
"id": "65:0",
"status": "YELLOW"
},
{
"id": "65:0",
"status": "GREEN"
}
]
Want to count status key value and create the following Object
{
'ORANGE' : 3,
'GREEN' : 4,
'YELLOW' : 2,
'RED' : 1,
}