ArrayBuffer
The ArrayBuffer object is used to represent a generic raw binary data buffer.
It is an array of bytes, often referred to in other languages as a “byte array”. You cannot directly manipulate the contents of an ArrayBuffer; instead, you create one of the typed array objects or a {{jsxref("DataView")}} object which represents the buffer in a specific format, and use that to read and write the contents of the buffer.
The ArrayBuffer() constructor creates a new ArrayBuffer of the given length in bytes. You can also get an array buffer from existing data, for example, from a Base64 string or from a local file.
ArrayBuffer is a transferable object.
Description
Resizing ArrayBuffers
ArrayBuffer objects can be made resizable by including the maxByteLength option when calling the {{jsxref("ArrayBuffer/ArrayBuffer", "ArrayBuffer()")}} constructor. You can query whether an ArrayBuffer is resizable and what its maximum size is by accessing its {{jsxref("ArrayBuffer/resizable", "resizable")}} and {{jsxref("ArrayBuffer/maxByteLength", "maxByteLength")}} properties, respectively. You can assign a new size to a resizable ArrayBuffer with a {{jsxref("ArrayBuffer/resize", "resize()")}} call. New bytes are initialized to 0.
These features make resizing ArrayBuffers more efficient — otherwise, you have to make a copy of the buffer with a new size. It also gives JavaScript parity with WebAssembly in this regard (Wasm linear memory can be resized with WebAssembly.Memory.prototype.grow()).
Transferring ArrayBuffers
ArrayBuffer objects can be transferred between different execution contexts, like Web Workers or Service Workers, using the structured clone algorithm. This is done by passing the ArrayBuffer as a transferable object in a call to {{domxref("Worker.postMessage()")}} or {{domxref("ServiceWorker.postMessage()")}} . In pure JavaScript, you can also transfer the ownership of memory from one ArrayBuffer to another using its {{jsxref("ArrayBuffer/transfer", "transfer()")}} or {{jsxref("ArrayBuffer/transferToFixedLength", "transferToFixedLength()")}} method.
When an ArrayBuffer is transferred, its original copy becomes detached — this means it is no longer usable. At any moment, there will only be one copy of the ArrayBuffer that actually has access to the underlying memory. Detached buffers have the following behaviors:
{{jsxref("ArrayBuffer/byteLength", "byteLength")}}becomes 0 (in both the buffer and the associated typed array views).- Methods, such as
{{jsxref("ArrayBuffer/resize", "resize()")}}and{{jsxref("ArrayBuffer/slice", "slice()")}}, throw a{{jsxref("TypeError")}}when invoked. The associated typed array views’ methods also throw aTypeError.
You can check whether an ArrayBuffer is detached by its {{jsxref("ArrayBuffer/detached", "detached")}} property.
Constructor
{{jsxref("ArrayBuffer/ArrayBuffer", "ArrayBuffer()")}}- : Creates a new
ArrayBufferobject.
- : Creates a new
Static properties
ArrayBuffer[Symbol.species]- : The constructor function that is used to create derived objects.
Static methods
{{jsxref("ArrayBuffer.isView()")}}- : Returns
trueifargis one of the ArrayBuffer views, such as typed array objects or a{{jsxref("DataView")}}. Returnsfalseotherwise.
- : Returns
Instance properties
These properties are defined on ArrayBuffer.prototype and shared by all ArrayBuffer instances.
{{jsxref("ArrayBuffer.prototype.byteLength")}}- : The size, in bytes, of the
ArrayBuffer. This is established when the array is constructed and can only be changed using the{{jsxref("ArrayBuffer.prototype.resize()")}}method if theArrayBufferis resizable.
- : The size, in bytes, of the
{{jsxref("Object/constructor", "ArrayBuffer.prototype.constructor")}}- : The constructor function that created the instance object. For
ArrayBufferinstances, the initial value is the{{jsxref("ArrayBuffer/ArrayBuffer", "ArrayBuffer")}}constructor.
- : The constructor function that created the instance object. For
{{jsxref("ArrayBuffer.prototype.detached")}}- : Read-only. Returns
trueif theArrayBufferhas been detached (transferred), orfalseif not.
- : Read-only. Returns
{{jsxref("ArrayBuffer.prototype.maxByteLength")}}- : The read-only maximum length, in bytes, that the
ArrayBuffercan be resized to. This is established when the array is constructed and cannot be changed.
- : The read-only maximum length, in bytes, that the
{{jsxref("ArrayBuffer.prototype.resizable")}}- : Read-only. Returns
trueif theArrayBuffercan be resized, orfalseif not.
- : Read-only. Returns
ArrayBuffer.prototype[Symbol.toStringTag]- : The initial value of the
[Symbol.toStringTag]property is the string"ArrayBuffer". This property is used in{{jsxref("Object.prototype.toString()")}}.
- : The initial value of the
Instance methods
{{jsxref("ArrayBuffer.prototype.resize()")}}- : Resizes the
ArrayBufferto the specified size, in bytes.
- : Resizes the
{{jsxref("ArrayBuffer.prototype.slice()")}}- : Returns a new
ArrayBufferwhose contents are a copy of thisArrayBuffer’s bytes frombegin(inclusive) up toend(exclusive). If eitherbeginorendis negative, it refers to an index from the end of the array, as opposed to from the beginning.
- : Returns a new
{{jsxref("ArrayBuffer.prototype.transfer()")}}- : Creates a new
ArrayBufferwith the same byte content as this buffer, then detaches this buffer.
- : Creates a new
{{jsxref("ArrayBuffer.prototype.transferToFixedLength()")}}- : Creates a new non-resizable
ArrayBufferwith the same byte content as this buffer, then detaches this buffer.
- : Creates a new non-resizable
Examples
Creating an ArrayBuffer
In this example, we create a 8-byte buffer with an {{jsxref("Int32Array")}} view referring to the buffer:
const buffer = new ArrayBuffer(8);
const view = new Int32Array(buffer);
Specifications
{{Specifications}}
Browser compatibility
{{Compat}}
See also
- Polyfill of
ArrayBufferincore-js - JavaScript typed arrays guide
{{jsxref("SharedArrayBuffer")}}- RangeError: invalid array length