Name Description Size
browser.js 0
BYTES_PER_ELEMENT.js --- esid: sec-typedarray.bytes_per_element description: > The initial value of Int16Array.BYTES_PER_ELEMENT is 2. info: | The value of TypedArray.BYTES_PER_ELEMENT is the Number value of the Element Size value specified in Table 49 for TypedArray. This property has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: false }. includes: [propertyHelper.js] features: [TypedArray] --- 792
constructor.js --- esid: sec-typedarray-constructors description: > Int16Array is a constructor function. features: [TypedArray] --- 362
is-a-constructor.js --- esid: sec-ecmascript-standard-built-in-objects description: > The Int16Array constructor implements [[Construct]] info: | IsConstructor ( argument ) The abstract operation IsConstructor takes argument argument (an ECMAScript language value). It determines if argument is a function object with a [[Construct]] internal method. It performs the following steps when called: If Type(argument) is not Object, return false. If argument has a [[Construct]] internal method, return true. Return false. includes: [isConstructor.js] features: [Reflect.construct, TypedArray] --- 866
length.js --- esid: sec-typedarray-constructors description: Int16Array.length property descriptor info: | The TypedArray Constructors The length property of the TypedArray constructor function is 3. 17 ECMAScript Standard Built-in Objects ... Unless otherwise specified, the length property of a built-in function object has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: true }. includes: [propertyHelper.js] features: [TypedArray] --- 752
name.js --- esid: sec-properties-of-the-typedarray-constructors description: > Int16Array.name is "Int16Array". info: | Each TypedArray constructor has a name property whose value is the String value of the constructor name specified for it in Table 49. 17 ECMAScript Standard Built-in Objects: Every built-in Function object, including constructors, that is not identified as an anonymous function has a name property whose value is a String. Unless otherwise specified, the name property of a built-in Function object, if it exists, has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: true }. includes: [propertyHelper.js] features: [TypedArray] --- 992
proto.js --- esid: sec-properties-of-the-typedarray-constructors description: > The prototype of Int16Array is %TypedArray%. info: | The value of the [[Prototype]] internal slot of each TypedArray constructor is the %TypedArray% intrinsic object (22.2.1). includes: [testTypedArray.js] features: [TypedArray] --- 580
prototype
prototype.js --- esid: sec-typedarray.prototype description: > The initial value of Int16Array.prototype is the Int16Array prototype object. info: | The initial value of TypedArray.prototype is the corresponding TypedArray prototype intrinsic object (22.2.6). This property has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: false }. includes: [propertyHelper.js] features: [TypedArray] --- 796
shell.js --- description: | Test if a given function is a constructor function. defines: [isConstructor] features: [Reflect.construct] --- 5623