The slice()
method returns a new ArrayBuffer
whose contents are a copy of this ArrayBuffer
's bytes from begin
, inclusive, up to end
, exclusive.
arraybuffer.slice(begin[, end])
begin
end
ArrayBuffer
contains all bytes from begin to the end of this ArrayBuffer
. The range specified by the begin and end values is clamped to the valid index range for the current array. If the computed length of the new ArrayBuffer
would be negative, it is clamped to zero.A new ArrayBuffer
object.
The slice
method copies up to, but not including, the byte indicated by the end
parameter. If either begin
or end
is negative, it refers to an index from the end of the array, as opposed to from the beginning.
ArrayBuffer
var buf1 = new ArrayBuffer(8); var buf2 = buf1.slice(0);
Specification | Status | Comment |
---|---|---|
Typed Array Specification | Obsolete | Superseded by EMCAScript 6. |
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'ArrayBuffer.prototype.slice' in that specification. | Standard | Initial definition in an ECMA standard. |
ECMAScript Latest Draft (ECMA-262) The definition of 'ArrayBuffer.prototype.slice' in that specification. | Draft |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes | Yes | 12
|
11 | Yes | 6 |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | Yes | Yes | 14
|
Yes | 6 | Yes |
Server | |
---|---|
Node.js | |
Basic support | Yes |
© 2005–2018 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/ArrayBuffer/slice