Results 1 - 10 of 10

ArrayBuffer

The ArrayBuffer object is used to represent a generic, fixed-length raw binary data buffer. You cannot directly manipulate the contents of an ArrayBuffer; instead, you create one of the typed array objects or a DataView object which represents the buffer in a specific format, and use that to read and write the contents of the buffer.
ArrayBuffer Constructor JavaScript TypedArrays

ArrayBuffer

The ArrayBuffer object is used to represent a generic, fixed-length raw binary data buffer. You cannot directly manipulate the contents of an ArrayBuffer; instead, you create one of the typed array objects or a DataView object which represents the buffer in a specific format, and use that to read and write the contents of the buffer.
ArrayBuffer Constructor JavaScript TypedArrays

get ArrayBuffer[@@species]

The ArrayBuffer[@@species] accessor property returns the ArrayBuffer constructor.
ArrayBuffer JavaScript Property TypedArrays

ArrayBuffer.prototype.byteLength

The byteLength accessor property represents the length of an ArrayBuffer in bytes.
ArrayBuffer JavaScript Property Prototype

ArrayBuffer.isView()

The ArrayBuffer.isView() method returns true if arg is one of the ArrayBuffer views, such as typed array objects or a DataView; false otherwise.
ArrayBuffer JavaScript Method TypedArrays

ArrayBuffer.prototype

The ArrayBuffer.prototype property represents the prototype for the ArrayBuffer object.
ArrayBuffer JavaScript Property

ArrayBuffer.prototype.slice()

The slice() method returns a new ArrayBuffer whose contents are a copy of this ArrayBuffer's bytes from begin, inclusive, up to end, exclusive.
ArrayBuffer JavaScript Method Prototype

ArrayBuffer.transfer()

The static ArrayBuffer.transfer() method returns a new ArrayBuffer whose contents have been taken from the oldBuffer's data and then is either truncated or zero-extended by newByteLength. If newByteLength is undefined, the byteLength of the oldBuffer is used. This operation leaves oldBuffer in a detached state.
ArrayBuffer Experimental JavaScript Method Reference TypedArrays