из другого массива с такими же id?
arr1 = [{id: 1, title:"title1"}, {id:2, title: "title2"}]
arr2 = [{id: 1, title: "updatedTitle1"}]
expected output:
arr3 = [{id: 1, title: "updatedTitle1"}, {id:2, title: "title2"}]
const arr1 = [{id: 1, title:"title1"}, {id:2, title: "title2"}] const arr2 = [{id: 1, title: "updatedTitle1"}] const arr3 = arr1.map(item => { const updatedItem = arr2.find((updatedItem) => updatedItem.id === item.id) return updatedItem ?? item }) console.log(arr3)
правильно логику понял?
Обсуждают сегодня