Javascript BigInt64Array buffer

Introduction

The Javascript BigInt64Array buffer property returns the ArrayBuffer referenced by a BigInt64Array.

BigInt64Array.buffer

The Javascript BigInt64Array buffer property is a read only property.

The value is set when the BigInt64Array is constructed and cannot be changed.

Using the Javascript BigInt64Array buffer property

var buffer = new ArrayBuffer(8);
var uint16 = new BigInt64Array(buffer);
uint16.buffer;



PreviousNext

Related