Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
const arr = [ { name: "src", value:"/img/picture.png"}, { name: "alt", value:"Some text"}, { name: "title", value:"Another text"} ]
const obj = { src: "/img/picture.png", alt: "Some text", title: "Another text" }
const arr = [ { name: "src", value:"/img/picture.png"}, { name: "alt", value:"Some text"}, { name: "title", value:"Another text"} ]; const obj = {}; arr.map(item => obj[item.name] = item.value);
const arr = [ {name: "src", value: "/img/picture.png"}, {name: "alt", value: "Some text"}, {name: "title", value: "Another text"} ];
const newArr = arr.map(({name, value}) => ({ [name]: value }));