How to use TypedArray.byteLength() to get the length (in bytes) of a typed array in JavaScript

1 Answer

0 votes
// typedarray.byteLength

var arr = new Uint8Array([7, 1, 2, 10]);

document.write(arr.byteLength + "<br />");

/*
run:

4

*/

 



answered Aug 12, 2016 by avibootz
...