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

ACCESSOR_HIDDEN_CONFIG

A non-enumerable, configurable accessor property.

 

Notes

The property will have the following descriptor:

  • Accessor property (a getter/setter)
  • Writable = true (if setter defined) or false (if setter not defined)
  • Enumerable = false (hidden)
  • Configurable = true (can be changed)

Example

someObj.addProp(
	ACCESSOR_HIDDEN_CONFIG,
	"foo",
	function getter() { ... },
	function setter() { ... }
);
Availability STABLE

Requires:

Property Definitions

Topics: