I need to change all keys in my Objects which are in the array.
const arr = [
{
"Title" : 'test',
"Format" : "BLA-BLA",
"Start Year" : '2012',
"Stars" : []
},
{
"Title" : 'test2',
"Format" : "BLA-BLA2",
"Start Year" : '2032',
"Stars" : []
}
]
I need to change "Title" to "name", "Format" to "format", "Start year" to "year", "Stars" to "actors"
How can I do this?