Uint8Array
is a typed array, meaning it is a mechanism for viewing the data in an underlying ArrayBuffer
.
Instances of other typed arrays can be created similarly.
To create a typed array that only views a portion of the underlying buffer, pass the offset and length to the constructor.
See Docs > API > Utils for more useful utilities.