This AI is still in early stages of development.
DATA_NORMAL
An enumerable, non-configurable, writable data property.
Notes
The property will have the following descriptor:
Data property (a value)
Writable = true
Enumerable = true (not hidden)
Configurable = false (cannot be altered once defined)
Example
someObj.addProp(
DATA_NORMAL,
"foo",
"bar" // value
);