Opposite of Object.freeze or Object.seal in JavaScript
问题 What is the opposite of Object.freeze or Object.seal ? Is there a function that has a name such as detach? 回答1: There is no way to do this, once an object has been frozen there is no way to unfreeze it. Source 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 回答2: I think you can do, using some