The DataView
.prototype
property represents the prototype for the DataView
object.
Property attributes of DataView.prototype |
|
---|---|
Writable | no |
Enumerable | no |
Configurable | no |
Description
DataView
instances inherit from DataView.prototype
. As with all constructors, you can change the constructor's prototype object to make changes to all DataView
instances.
Properties
DataView.prototype.constructor
- Specifies the function that creates an object's prototype. The initial value is the standard built-in
DataView
constructor. DataView.prototype.buffer
Read only- The
ArrayBuffer
referenced by this view. Fixed at construction time and thus read only. DataView.prototype.byteLength
Read only- The length (in bytes) of this view from the start of its
ArrayBuffer
. Fixed at construction time and thus read only. DataView.prototype.byteOffset
Read only- The offset (in bytes) of this view from the start of its
ArrayBuffer
. Fixed at construction time and thus read only.
Methods
Read
DataView.prototype.getInt8()
- Gets a signed 8-bit integer (byte) at the specified byte offset from the start of the view.
DataView.prototype.getUint8()
- Gets an unsigned 8-bit integer (unsigned byte) at the specified byte offset from the start of the view.
DataView.prototype.getInt16()
- Gets a signed 16-bit integer (short) at the specified byte offset from the start of the view.
DataView.prototype.getUint16()
- Gets an unsigned 16-bit integer (unsigned short) at the specified byte offset from the start of the view.
DataView.prototype.getInt32()
- Gets a signed 32-bit integer (long) at the specified byte offset from the start of the view.
DataView.prototype.getUint32()
- Gets an unsigned 32-bit integer (unsigned long) at the specified byte offset from the start of the view.
DataView.prototype.getFloat32()
- Gets a signed 32-bit float (float) at the specified byte offset from the start of the view.
DataView.prototype.getFloat64()
- Gets a signed 64-bit float (double) at the specified byte offset from the start of the view.
Write
DataView.prototype.setInt8()
- Stores a signed 8-bit integer (byte) value at the specified byte offset from the start of the view.
DataView.prototype.setUint8()
- Stores an unsigned 8-bit integer (unsigned byte) value at the specified byte offset from the start of the view.
DataView.prototype.setInt16()
- Stores a signed 16-bit integer (short) value at the specified byte offset from the start of the view.
DataView.prototype.setUint16()
- Stores an unsigned 16-bit integer (unsigned short) value at the specified byte offset from the start of the view.
DataView.prototype.setInt32()
- Stores a signed 32-bit integer (long) value at the specified byte offset from the start of the view.
DataView.prototype.setUint32()
- Stores an unsigned 32-bit integer (unsigned long) value at the specified byte offset from the start of the view.
DataView.prototype.setFloat32()
- Stores a signed 32-bit float (float) value at the specified byte offset from the start of the view.
DataView.prototype.setFloat64()
- Stores a signed 64-bit float (double) value at the specified byte offset from the start of the view.
Specifications
Specification | Status | Comment |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'DataView.prototype' in that specification. |
Standard | Initial definition. |
ECMAScript Latest Draft (ECMA-262) The definition of 'DataView.prototype' in that specification. |
Living Standard |
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | 9 | 12 | 15 | 10 | 12.1 | 5.1 |
Feature | Android webview | Chrome for Android | Edge mobile | Firefox for Android | IE mobile | Opera Android | iOS Safari |
---|---|---|---|---|---|---|---|
Basic support | 4 | Yes | Yes | 15 | 10 | 12 | 4.2 |