如何识别javascript不可移动的属性?

前端之家收集整理的这篇文章主要介绍了如何识别javascript不可移动的属性?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
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;

请注意,这只适用于obj的自己的属性,而不是继承的属性;对于那些您将必须调用相应原型的功能.

原文链接:https://www.f2er.com/js/152319.html

猜你在找的JavaScript相关文章