javascript bytes

Solutions on MaxInterview for javascript bytes by the best coders in the world

showing results for - "javascript bytes"
Anusha
17 Aug 2018
1/*
2  By using typed arrays, you can store arrays of these types:
3
4  Int8
5  Uint8
6  Int16
7  Uint16
8  Int32
9  Uint32
10  Float32
11  Float64
12*/
13var array = new Uint8Array(100);
14array[42] = 10;
15alert(array[42]);​
16