Javascript Uint32Array buffer

Introduction

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

Uint32Array.buffer

The Javascript Uint32Array buffer property is a read only property.

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

Using the Javascript Uint32Array buffer property

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



PreviousNext

Related