Name Description Size
browser.js 0
contructor-calls-super-multiple-arguments.js --- es6id: 22.1.1 description: > Constructor calling super() with 2+ arguments creates an Array object info: | 22.1.1 The Array Constructor The Array constructor is designed to be subclassable. It may be used as the value of an extends clause of a class definition. Subclass constructors that intend to inherit the exotic Array behaviour must include a super call to the Array constructor to initialize subclass instances that are exotic Array objects. includes: [compareArray.js] --- 807
contructor-calls-super-single-argument.js --- es6id: 22.1.1 description: > Constructor calling super() with a single argument creates an Array object info: | 22.1.1 The Array Constructor The Array constructor is designed to be subclassable. It may be used as the value of an extends clause of a class definition. Subclass constructors that intend to inherit the exotic Array behaviour must include a super call to the Array constructor to initialize subclass instances that are exotic Array objects. --- 766
length.js --- es6id: 22.1.4.1 description: > Instances has the own property length info: | 22.1.4.1 length The length property of an Array instance is a data property whose value is always numerically greater than the name of every configurable own property whose name is an array index. The length property initially has the attributes { [[Writable]]: true, [[Enumerable]]: false, [[Configurable]]: false }. --- 1030
regular-subclassing.js --- es6id: 22.1.1 description: Subclassing Array info: | 22.1.1 The Array Constructor The Array constructor is designed to be subclassable. It may be used as the value of an extends clause of a class definition. (...) includes: [compareArray.js] --- 908
shell.js 0
super-must-be-called.js --- es6id: 22.1.1 description: Super need to be called to initialize internals info: | 22.1.1 The Array Constructor ... The Array constructor is designed to be subclassable. It may be used as the value of an extends clause of a class definition. Subclass constructors that intend to inherit the exotic Array behaviour must include a super call to the Array constructor to initialize subclass instances that are exotic Array objects. --- 796