This page is Ready to Use

Notice: The WebPlatform project, supported by various stewards between 2012 and 2015, has been discontinued. This site is now available on github.

buffer

Summary

Read-only. Gets the ArrayBuffer that is referenced by this array.

Syntax

var arrayBuffer = int8Array.buffer; 

Examples

The following example shows how to get the ArrayBuffer of the array.

var req = new XMLHttpRequest(); req.open('GET', "http://www.example.com"); req.responseType = "arraybuffer"; req.send(); req.onreadystatechange = function () { if (req.readyState === 4) { var buffer = req.response; var dataView = newDataView(buffer); var intArr = newInt8Array(buffer.byteLength); alert(intArr.buffer.byteLength); } } 

Attributions

  • Microsoft Developer Network: Article

close