get Method (Int16Array)

Omittable. Gets the element at the specified index.

var value = int16Array.get(index);

Parameters

  • value
    The value returned by this method.

  • index
    The index at which to get the element of the array.

Example

The following example shows how to get the first element of the array.

var req = new XMLHttpRequest();
    req.open('GET', "https://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 Int16Array(buffer.byteLength / 2);
            var element = intArr.get(0);
        }
    }

Requirements

Supported in the following document modes: Internet Explorer 10 standards and Internet Explorer 11 standards. Also supported in Windows Store apps. See Version Information. Not supported in the following document modes: Quirks, Internet Explorer 6 standards, Internet Explorer 7 standards, Internet Explorer 8 standards, Internet Explorer 9 standards.