8.2.1.js |
8.2.1 The Tuple Constructor
The Tuple constructor:
is the intrinsic object %Tuple%.
|
1529 |
8.2.2.js |
8.2.2 Properties of the Tuple Constructor
The Tuple constructor:
has a [[Prototype]] internal slot whose value is %Function.prototype%.
|
278 |
call-method.js |
10.2 ECMAScript Function Objects
...
All ECMAScript function objects have the [[Call]] internal method defined here. ECMAScript functions that are also constructors in addition have the [[Construct]] internal method.
|
620 |
is-a-constructor.js |
|
112 |
length.js |
18 ECMAScript Standard Built-in Objects
...
Every built-in function object, including constructors, has a "length" property whose value is a non-negative integral Number. Unless otherwise specified, this value is equal to the number of required parameters shown in the subclause heading for the function description. Optional parameters and rest parameters are not included in the parameter count.
|
665 |
name.js |
18 ECMAScript Standard Built-in Objects
Every built-in function object, including constructors, has a "name" property whose value is a String. Unless otherwise specified, this value is the name that is given to the function in this specification. Functions that are identified as anonymous functions use the empty String as the value of the "name" property.
...
Unless otherwise specified, the "name" property of a built-in function object has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: true }.
|
808 |