The byteLength
accessor property of SharedArrayBuffer instances returns the length (in bytes) of this SharedArrayBuffer
.
Description
The byteLength
property is an accessor property whose set accessor function is undefined
, meaning that you can only read this property. The value is established when the shared array is constructed and cannot be changed.
Examples
Using byteLength
const sab = new SharedArrayBuffer(1024);
sab.byteLength; // 1024