在
Javascript严格模式
Deleting an undeletable property is not allowed
为了确保不删除这样一个不可删除的属性,如何确定属性X是可删除的,属性Y是不可删除的
背后的概念是……?
解决方法
The concept behind this is…?
Property attributes.将其可配置属性设置为false的每个属性都不能被删除(它以粗暴模式静默失败并以严格模式抛出).
How to figure out whether a property is deletable?
您可以使用Object.getOwnPropertyDescriptor()
function作为对象访问属性:
var isDeletable = Object.getOwnPropertyDescriptor(obj,"propName").configurable;