| Typed Array | Element Size (Bytes) | Range (Min) | Range (Max) |
|---|---|---|---|
| Uint8Array | 1 | 0 | 255 |
| Int8Array | 1 | -128 | 127 |
| Uint16Array | 2 | 0 | 65,535 |
| Int16Array | 2 | -32,768 | 32,767 |
| Uint32Array | 4 | 0 | 4,294,967,295 |
| Int32Array | 4 | -2,147,483,648 | 2,147,483,647 |
| Float32Array | 4 | ±1.2 × 10^-38 | ±3.4 × 10^38 |
| Float64Array | 8 | ±5.0 × 10^-324 | ±1.8 × 10^308 |
| BigUint64Array | 8 | 0 | 2^64 - 1 |
| BigInt64Array | 8 | -2^63 | 2^63 - 1 |
Created
October 10, 2024 05:53
-
-
Save nick-kravchenko/526ed656e7b1d68e326b644d856b71d4 to your computer and use it in GitHub Desktop.
js array types
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment