Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
const result = arr.reduce((res, el) => { const dateKey = el.dt_txt.split(' ')[0]; if (res[dateKey]) { res[dateKey].push(el) } else { res[dateKey] = [el] } return res; }, {}) console.log(Object.values(result))