const items = {111: {id: 111}, 222: {id: 222}};
items // Object { 111: {…}, 222: {…} }
delete items[111] // true
items // Object { 222: {…} }
Object.defineProperty()
? Что покажет Object.getOwnPropertyDescriptor(items, 53522)
— там writable: true
?