Difference between Configurable and Writable attributes of an Object

后端 未结 4 1949
情歌与酒
情歌与酒 2020-12-29 23:27

I saw the following regarding javascript, object data property attributes

— 
Configurable: Specifies whether the property can be deleted or changed.

— Enume

4条回答
  •  滥情空心
    2020-12-30 00:23

    If Writable is set to true means the object property's value can be changed.

    If Configurable is set to true, means the object property's type can be changed from data property to accessor property (or vice versa); and the object property can be deleted.

提交回复
热议问题