On this page
Properties
Methods

Interface SharedArrayBuffer

interface SharedArrayBuffer {
    "[toStringTag]": "SharedArrayBuffer";
    byteLength: number;
    slice(begin?: number, end?: number): SharedArrayBuffer;
}
Index

Properties

Methods

Properties

"[toStringTag]": "SharedArrayBuffer"
byteLength: number

Read-only. The length of the ArrayBuffer (in bytes).

Methods

  • Returns a section of an SharedArrayBuffer.

    Parameters

    • Optionalbegin: number
    • Optionalend: number

    Returns SharedArrayBuffer

Was this helpful?
SDK JS
Reference
SharedArrayBuffer