dataArr: [{
"id": 666,
"author": {
"id": "IL6666",
"name": "test",
"profileUrl": "test.ru",
"avatarUrl": "test.jpg"
},
"content": '',
"postedAt": 0,
}]
dataArr: [{
"id": 666,
"author": {
"id": "IL6666",
"name": "test",
"profileUrl": "test.ru",
"avatarUrl": "test.jpg"
},
"content": 'test',
"postedAt": 1581584460,
}]
const dataArr = [{
"id": 666,
"author": {
"id": "IL6666",
"name": "test",
"profileUrl": "test.ru",
"avatarUrl": "test.jpg"
},
"content": '',
"postedAt": 0,
}];
const newDataArr = dataArr.map(item => ({
...item,
content: 'новый content',
postedAt: 'новый postedAt'
}));
console.log(newDataArr);