JavaScript Typed Arrays

An int8array is an array of signed 8-bit bytes. Each byte can represent an integer ranging from -128 to 127. A Uint8array is an array of unsigned 8-bit bytes. Each byte can represent an integer ranging from 0 to 255.

There are several other typed array classes- Uint8ClampedArray (used with canvas objects), Int16Array, Uint16Array, Int32Array, Uint32Array, Float32Array, Float64Array, BigInt64Array, and BigUint64Array.