This topic has not yet been rated - Rate this topic

BYTES_PER_ELEMENT Constant (Int32Array)

JavaScript - Internet Explorer 10

The size in bytes of each element in the array.

var arraySize = int8Array.BYTES_PER_ELEMENT;

The following example shows how to get the size of the array elements.

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 Int32Array(buffer.byteLength / 4);
            alert(intArr.BYTES_PER_ELEMENT);
        }
    }

Supported in the Internet Explorer 10 standards document mode. 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.

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.