Name Description Size
browser.js 0
BYTES_PER_ELEMENT.js --- esid: sec-typedarray.bytes_per_element description: > The initial value of Float32Array.BYTES_PER_ELEMENT is 4. 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] --- 802
constructor.js --- esid: sec-typedarray-constructors description: > Float32Array is a constructor function. features: [TypedArray] --- 368
is-a-constructor.js --- esid: sec-ecmascript-standard-built-in-objects description: > The Float32Array 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] --- 874
length.js --- esid: sec-typedarray-constructors description: Float32Array.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] --- 756
name.js --- esid: sec-properties-of-the-typedarray-constructors description: > Float32Array.name is "Float32Array". 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] --- 1000
proto.js --- esid: sec-properties-of-the-typedarray-constructors description: > The prototype of Float32Array 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] --- 584
prototype
prototype.js --- esid: sec-typedarray.prototype description: > The initial value of Float32Array.prototype is the Float32Array 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] --- 810
shell.js --- description: | Test if a given function is a constructor function. defines: [isConstructor] features: [Reflect.construct] --- 5623