Read-only. The offset of this array from the start of its ArrayBuffer, in bytes, as fixed at construction time.
Syntaxvar arrayOffset = int16Array.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 Int16Array(buffer.byteLength / 2);
alert(intArr.byteOffset);
}
}
Attributions
Microsoft Developer Network: Article
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4