May 2011
Intermediate to advanced
1093 pages
40h 54m
English
ArrayBufferView — common properties for types based on ArrayBuffers
ArrayBufferView serves as a superclass for types that provide access to the bytes of an ArrayBuffer. You can’t create an ArrayBufferView directly: it exists to define the common properties for subtypes like TypedArray and DataView.
readonly ArrayBuffer bufferThe underlying ArrayBuffer that this object is a view of.
readonly unsigned long byteLengthThe length, in bytes, of the portion of buffer that is accessible through
this view.
readonly unsigned long byteOffsetThe starting position, in bytes, of the portion of the buffer that is accessible through this view.