What is the opposite of Object.freeze
or Object.seal
? Is there a function that has a name such as detach?
Advertisement
Answer
There is no way to do this, once an object has been frozen there is no way to unfreeze it.
Freezing an object is the ultimate form of lock-down. Once an object has been frozen it cannot be unfrozen – nor can it be tampered in any manner. This is the best way to make sure that your objects will stay exactly as you left them, indefinitely