在Chrome中,在控制台中尝试以下操作.第一
console = 0;
将值0分配给控制台.然后
console // (prints `0`)
检查我们是否正确覆盖了控制台.最后,
delete console
令人惊讶的是,控制台现在拥有原始的控制台对象.实际上,删除关键字“resurected”控制台,而不是灭绝它!
这是预期的行为吗?在Chromium代码中实现哪里?
解决方法
如
MDN’s documentation on
delete
所述:
If the delete operator succeeds,it removes the property from the
object entirely,although this might reveal a similarly named property
on a prototype of the object.
有些浏览器的窗口从本机原型继承,您将看到源代码以查看属性是如何继承的,如果您真的想知道很多细节,但是大多数浏览器的工作方式就像JS自己的.