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

DATA_HIDDEN

A non-enumerable, non-configurable, writable data property.

 

Notes

The property will have the following descriptor:

  • Data property (a value)
  • Writable = true
  • Enumerable = false (hidden)
  • Configurable = false (cannot be altered once defined)

Example

someObj.addProp(
	DATA_HIDDEN,
	"foo",
	"bar" // value
);
Availability STABLE

Requires:

Property Definitions

Topics: