Metzploreur/node_modules/typedarray/example/tarray.js
clement callaert ea7979b55b commit
2023-11-04 00:51:37 +01:00

4 lines
110 B
JavaScript

var Uint8Array = require('../').Uint8Array;
var ua = new Uint8Array(5);
ua[1] = 256 + 55;
console.log(ua[1]);