Web/JavaScript/Reference/Global objects/DataView/setInt16

From Get docs


The setInt16() method stores a signed 16-bit integer (short) value at the specified byte offset from the start of the DataView.


Syntax

dataview.setInt16(byteOffset, value [, littleEndian])

Parameters

byteOffset
The offset, in byte, from the start of the view where to store the data.
value
The value to set.
littleEndian
Optional Indicates whether the 16-bit int is stored in little- or big-endian format. If false or undefined, a big-endian value is written.

Return value

undefined.

Errors thrown

RangeError
Thrown if the byteOffset is set such as it would store beyond the end of the view.

Examples

Using the setInt16 method

var buffer = new ArrayBuffer(8);
var dataview = new DataView(buffer);
dataview.setInt16(1, 3);
dataview.getInt16(1); // 3

Specifications

Specification
ECMAScript (ECMA-262)The definition of 'DataView.prototype.setInt16' in that specification.

Browser compatibility

Update compatibility data on GitHub

Desktop Mobile Server
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet Node.js
setInt16 Chrome

Full support 9

Edge

Full support 12

Firefox

Full support 15

IE

Full support 10

Opera

Full support 12.1

Safari

Full support 5.1

WebView Android

Full support 4

Chrome Android

Full support 18

Firefox Android

Full support 15

Opera Android

Full support 12.1

Safari iOS

Full support 4.2

Samsung Internet Android

Full support 1.0

nodejs

Full support 0.10

Legend

Full support  
Full support


See also