有一个数组对象
const arr = [
{
name: '小王',
...other
},
{
name: '小李',
...other
},
{
name: '小王',
...other
},
{
name: '小韩',
...other
},
{
name: '小李',
...other
}
]
对该数组对象中的name值相同的进行添加序列号的重命名,
name值不同的则不处理
生成结果为
const arrNew = [
{
name: '小王1',
...other
},
{
name: '小李1',
...other
},
{
name: '小王2',
...other
},
{
name: '小韩',
...other
},
{
name: '小李2',
...other
}
]
目前没有想到比较合适的处理方法,谢谢各位帮助!