Forum Moderators: open
// spaces added for readability
imgObj = [
{
"name":"20221016_153938.jpg",
"uuid":"1a58228c-6c73-4a10-9bfa-fdac88110078",
"thumbnailUrl":"https://www.example.com/1a58228c-6c73-4a10-9bfa-fdac88110078/20221016_153938.jpg"
},
{
"name":"20221016_153946.jpg",
"uuid":"b2952110-888a-4d8e-ba29-b23709f56f38",
"thumbnailUrl":"https://www.example.com/b2952110-888a-4d8e-ba29-b23709f56f38/20221016_153946.jpg"
}
] for (var i of imgObj)
delete i.thumbnailUrl;
imgObj = imgObj.map(function (img) {
return {
name: img.name,
uuid: img.uuid
};
});
imgObj = imgObj.map(({ thumbnailUrl, ...rest }) => ({ ...rest }));