삭제만 불가능
Object.seal()
The Object.seal() method seals an object, preventing new properties from being added to it and marking all existing properties as non-configurable. Values of present properties can still be changed as long as they are writable. The object being sealed. By default, objects are extensible (new properties can be added to them).
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/seal

Seonglae Cho