How to store a byte array in Javascript
By using typed arrays, you can store arrays of these types: Type Value Range Size(bytes) Int8Array -128 to 127 1 Uint8Array 0 to 255 1 Uint8ClampedArray 0 to 255 1 Int16Array -32768 to 32767 2 Uint16Array 0 to 65535 2 Int32Array -2147483648 to 2147483647 4 Uint32Array 0 to 4294967295 4 Float32Array -3.4E38 to 3.4E38 4 … Read more