File "tarray.js"
Full Path: C:/wamp64/www/INTERPRETE2/backend/node_modules/typedarray/example/tarray.js
File size: 110 bytes
MIME-type: text/plain
Charset: utf-8
var Uint8Array = require('../').Uint8Array;
var ua = new Uint8Array(5);
ua[1] = 256 + 55;
console.log(ua[1]);