ДК
const copyUp = [];
for(i=0; i<data.length; i++){
copyData.push(data[i].title.charAt(0).toUpperCase() + data[i].title.slice(1))
copyUp.push(data[i].updated_at.split('').slice(0, 9).join(''))
}
console.log(copyTitle) //["One more check", "Checking once more", "User_id column added to the news table", "Asd12334"]
console.log(copyUp) // ["2021-07-2", "2021-07-2", "2021-08-0", "2021-06-1"]


