How to count the no of occurences of the 'value' key in a object inside an array & append the count to each value if any.
Here 'a' is the source data
var a = [
{ id: 1, value: "10000"},
{ id: 2, value: "20000"},
{ id: 3, value: "30000"},
{ id: 4, value: "10000"},
{ id: 5, value: "20000"},
{ id: 6, value: "40000"},
{ id: 7, value: "10000"},
{ id: 8, value: "70000"}
]
What i want to achieve is as following
result = [
{ id: 1, value: "10000"},
{ id: 2, value: "20000"},
{ id: 3, value: "30000"},
{ id: 4, value: "10000 (1)"},
{ id: 5, value: "20000 (1)"},
{ id: 6, value: "40000"},
{ id: 7, value: "10000 (2)"},
{ id: 8, value: "10000 (3)"}
]