JS修改对象的属性名称

如图所示:

    数组 aaa


怎么使用js高效的将其中的CourseName更改为title,得到结果如下:

        

let bbb = JSON.parse(JSON.stringify(aaa).replace(/CourseName/g,"title"));

console.log(bbb)

你可能感兴趣的:(JS修改对象的属性名称)