DATA_HIDDEN_CONFIG

(info) This AI is still in early stages of development.

DATA_HIDDEN_CONFIG

A non-enumerable, configurable, writable data property.

 

Notes

The property will have the following descriptor:

  • Data property (a value)

  • Writable = true

  • Enumerable = false (hidden)

  • Configurable = true (can be changed)

Example

someObj.addProp( DATA_HIDDEN_CONFIG, "foo", "bar" // value );