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.

byteOffset

Summary

Read-only. The offset of this array from the start of its ArrayBuffer, in bytes, as fixed at construction time.

Syntax

var arrayOffset = uint32Array.byteOffset;

Examples

The following example shows how to get the offset 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 = new DataView(buffer);
             var intArr = new Uint32Array(buffer.byteLength / 4);
             alert(intArr.byteOffset);
         }
     }

Attributions