configurableenumerblewritable的默认值

Posted ingots

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了configurableenumerblewritable的默认值相关的知识,希望对你有一定的参考价值。

1)在使用Object.defineProperty、Object.defineProperties 或 Object.create 函数的情况下添加数据属性,writable、enumerable和configurable默认值为false。

var obj1 = ;
Object.defineProperty(obj2, ‘name’, 
value: ‘me’
);

在上述代码中name的writable、enumerable和configurable默认值为false

 

2)使用对象直接量创建的属性,writable、enumerable和configurable特性默认为true。

var obj = 
name:’me’

Object.defineProperty(obj, ‘name’, 
value: ‘Change me’
);

 

以上是关于configurableenumerblewritable的默认值的主要内容,如果未能解决你的问题,请参考以下文章