📅  最后修改于: 2022-03-11 15:01:52.355000             🧑  作者: Mango
//This will replace myId of the item id with the updated object
return myArray.map((item) => {
return item.id === myId
? UPDATED_OBJECT_HERE
: item;
});