A Int16Array object describes an array-like view of an underlying binary data buffer.
The constructors are listed as follows:
new Int16Array(); new Int16Array(length); new Int16Array(typedArray); new Int16Array(object); new Int16Array(buffer [, byteOffset [, length]]);
Parameter | Optional | Meaning |
---|---|---|
length | Required | an internal array buffer is created of size length multiplied by BYTES_PER_ELEMENT bytes. |
typedArray | Required | the typedArray is copied into a new typed array. |
object | Required | use the Int16Array.from() method. |
buffer | Required | create from buffer |
byteOffset | optional | offset to start |
length | optional | length to copy |
Property access
You can reference elements in the array using standard array index syntax.
var int16 = new Int16Array(2); int16[0] = 42;//from w w w . j a va 2s . com console.log(int16[0]); // 42
Type | Value Range | Size in bytes | Description | Equivalent C type |
---|---|---|---|---|
Int16Array | -32768 to 32767 | 2 | 16-bit two's complement signed integer | int16_t |