Skip to content
FLAVIO COPES
flaviocopes.com
2026

ArrayBufferView

By Flavio Copes

Learn what an ArrayBufferView is, a portion of an ArrayBuffer with buffer, byteOffset, and byteLength properties, used by typed arrays and DataViews.

~~~

An ArrayBufferView is a portion of an ArrayBuffer.

It has an offset, and a length.

Once created, it provides 3 read-only properties:

Typed Arrays and DataViews are instances of an ArrayBufferView.

~~~

Related posts about platform: