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,
}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…