This AI is still in early stages of development.

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

An enumerable, configurable, read-only data property.

 

Notes

The property will have the following descriptor:

  • Data property (a value)
  • Writable = false
  • Enumerable = true (not hidden)
  • Configurable = true (can be changed)

Example

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

Requires:

Property Definitions

Topics:

 

  • No labels