挖财推财商教育短视频节目 旗下钱堂上线“锦囊”功能

Baseline 2024
Newly available
百度 从中期来看,可能意味着此轮全球经济复苏正在迎来边际上的拐点。

Since July 2024, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.

The maxByteLength accessor property of SharedArrayBuffer instances returns the maximum length (in bytes) that this SharedArrayBuffer can be grown to.

Description

The maxByteLength 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, set via the maxByteLength option of the SharedArrayBuffer() constructor, and cannot be changed.

If this SharedArrayBuffer was constructed without specifying a maxByteLength value, this property returns a value equal to the value of the SharedArrayBuffer's byteLength.

Examples

Using maxByteLength

In this example, we create a 8-byte buffer that is resizable to a max length of 16 bytes, then return its maxByteLength:

js
const buffer = new SharedArrayBuffer(8, { maxByteLength: 16 });

buffer.maxByteLength; // 16

Specifications

Specification
ECMAScript? 2026 Language?Specification
# sec-get-sharedarraybuffer.prototype.maxbytelength

Browser compatibility

See also