This topic has not yet been rated - Rate this topic

get Method (Float64Array)

JavaScript - Internet Explorer 10

Omittable. Gets the element at the specified index.

var value = float64Array.get(index);
value

The value returned by this method.

index

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

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 floatArr = new Float64Array(buffer.byteLength / 4);
            var element = floatArr.get(0);
        }
    }

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.