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.

get

Summary

Omittable. Gets the element at the specified index.

Syntax

var value = uint8Array.get(index);
value
The value returned by this method.
index
The index at which to get the element of the array.

Examples

The following example shows how to get the first element 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 Uint8Array(buffer.byteLength);
             var element = intArr.get(0);
         }
     }

Attributions