This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the specification changes.
The SharedArrayBuffer.prototype
property represents the prototype for the SharedArrayBuffer
object.
Property attributes of SharedArrayBuffer.prototype
| |
---|---|
Writable | no |
Enumerable | no |
Configurable | no |
SharedArrayBuffer
instances inherit from SharedArrayBuffer.prototype
. As with all constructors, you can change the constructor's prototype object to make changes to all SharedArrayBuffer
instances.
SharedArrayBuffer
constructor.SharedArrayBuffer.prototype.byteLength
Read only
SharedArrayBuffer.prototype.slice(begin, end)
SharedArrayBuffer
whose contents are a copy of this SharedArrayBuffer
's bytes from begin
, inclusive, up to end
, exclusive. If either begin
or end
is negative, it refers to an index from the end of the array, as opposed to from the beginning.Specification | Status | Comment |
---|---|---|
ECMAScript Shared Memory and Atomics The definition of 'SharedArrayBuffer.prototype' in that specification. | Draft | Initial definition. |
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | No support | No support | 52 (52) [1] | No support | No support | No support |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | No support | No support | 51.0 (51) [1] | No support | No support | No support |
[1] In Firefox version 46 until version 51, this feature was disabled by a preference setting. In about:config, set javascript.options.shared_memory
to true
.
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer/prototype