The TypedArray.name
property represents a string value of the typed array constructor name.
The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.
Property attributes of TypedArray.name |
|
---|---|
Writable | no |
Enumerable | no |
Configurable | no |
Syntax
TypedArray.name;
Description
TypedArray objects differ from each other in the number of bytes per element and in the way the bytes are interpreted. The name
property describes of what data type the array consists. The first part can be Int
for "integer" or Uint
for an "unsigned integer", also Float
for "floating point" is used. The second part is a number describing the bit-size of the array. Finally, the object type is Array
, with ClampedArray
as a special case. Please see Uint8ClampedArray
for more details.
Examples
Int8Array.name; // "Int8Array" Uint8Array.name; // "Uint8Array" Uint8ClampedArray.name; // "Uint8ClampedArray" Int16Array.name; // "Int16Array" Uint16Array.name; // "Uint16Array" Int32Array.name; // "Int32Array" Uint32Array.name; // "Uint32Array" Float32Array.name; // "Float32Array" Float64Array.name; // "Float64Array"
Specifications
Specification | Status | Comment |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'TypedArray.name' in that specification. |
Standard | Initial definition. |
ECMAScript Latest Draft (ECMA-262) The definition of 'TypedArray.name' in that specification. |
Draft |
Browser compatibility
Desktop | Mobile | Server | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
name | Chrome Full support 7 | Edge Full support 12 | Firefox Full support 4 | IE Full support 10 | Opera Full support 11.6 | Safari Full support 5.1 | WebView Android Full support 4 | Chrome Android Full support 18 | Firefox Android Full support 4 | Opera Android Full support 12 | Safari iOS Full support 4.2 | Samsung Internet Android Full support Yes | nodejs Full support Yes |
Legend
- Full support
- Full support