mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +00:00
12 lines
117 B
JavaScript
12 lines
117 B
JavaScript
// Typed Array Test
|
|
|
|
var a8 = new Uint8Array(4);
|
|
a8[0] = 1;
|
|
a8[1] = 2;
|
|
a8[2] = 3;
|
|
a8[3] = 4;
|
|
|
|
|
|
result = a8[3] == 4;
|
|
|