I have array of JSON like
JavaScript
x
7
1
[
2
{title:'button'},
3
{title:'button'},
4
{title:'button'},
5
{title:'button'},
6
]
7
and want to convert it as
JavaScript
1
7
1
[
2
{title:'button 1'},
3
{title:'button 2'},
4
{title:'button 3'},
5
{title:'button 4'},
6
]
7
Advertisement
Answer
Try this please
JavaScript
1
11
11
1
var arrJson = [
2
{title:'button'},
3
{title:'button'},
4
{title:'button'},
5
{title:'button'},
6
] ,
7
8
arrJson.forEach((e,i)=>{
9
arrJson [i]['title'] = arrJson[i]['title'] + " " + i;
10
})
11