ArrayBuffer.prototype.resizable

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.

ArrayBuffer 实例的 resizable 访问器属性返回此数组缓冲区是否可以调整大小。

尝试一下

描述

resizable 是一个访问器属性,其 set 访问器函数是 undefined,这意味着你只能读取该属性。该属性的值在数组创建时就确定了。如果在构造函数中设置了 maxByteLength 选项,resizable 将返回 true;否则,它将返回 false

示例

使用 resizable

在这个示例中,我们创建了一个 8 字节缓冲区,该缓冲区可调整到的最大长度为 16 字节,然后检查它的 resizable 属性,如果 resizable 返回 true 则调整它的大小:

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

if (buffer.resizable) {
  console.log("缓冲区可以调整大小!");
  buffer.resize(12);
}

规范

Specification
ECMAScript Language Specification
# sec-get-arraybuffer.prototype.resizable

浏览器兼容性

BCD tables only load in the browser

参见