The copyWithin()
method shallow copies part of an array to another location in the same array and returns it, without modifying its size.
arr.copyWithin(target) arr.copyWithin(target, start) arr.copyWithin(target, start, end)
target
target
will be counted from the end.target
is at or greater than arr.length
, nothing will be copied. If target
is positioned after start
, the copied sequence will be trimmed to fit arr.length
.start
Optional
start
will be counted from the end.start
is omitted, copyWithin
will copy from the start (defaults to 0).end
Optional
copyWithin
copies up to but not including end
. If negative, end
will be counted from the end.end
is omitted, copyWithin
will copy until the end (default to arr.length
).The modified array.
The copyWithin
works like C and C++'s memmove
, and is a high-performance method to shift the data of an Array
. This especially applies to the TypedArray
method of the same name. The sequence is copied and pasted as one operation; pasted sequence will have the copied values even when the copy and paste region overlap.
The copyWithin
function is intentionally generic, it does not require that its this value be an Array
object.
The copyWithin
method is a mutable method. It does not alter the length of this
, but will change its content and create new properties if necessary.
[1, 2, 3, 4, 5].copyWithin(-2); // [1, 2, 3, 1, 2] [1, 2, 3, 4, 5].copyWithin(0, 3); // [4, 5, 3, 4, 5] [1, 2, 3, 4, 5].copyWithin(0, 3, 4); // [4, 2, 3, 4, 5] [1, 2, 3, 4, 5].copyWithin(-2, -3, -1); // [1, 2, 3, 3, 4] [].copyWithin.call({length: 5, 3: 1}, 0, 3); // {0: 1, 3: 1, length: 5} // ES2015 Typed Arrays are subclasses of Array var i32a = new Int32Array([1, 2, 3, 4, 5]); i32a.copyWithin(0, 2); // Int32Array [3, 4, 5, 4, 5] // On platforms that are not yet ES2015 compliant: [].copyWithin.call(new Int32Array([1, 2, 3, 4, 5]), 0, 3, 4); // Int32Array [4, 2, 3, 4, 5]
if (!Array.prototype.copyWithin) { Array.prototype.copyWithin = // Array: Number[, Number[, Number]] function copyWithin(target, start, stop) { var positiveT = target >= 0, positiveS = (start = start | 0) >= 0, length = this.length, zero = 0, r = function() {return ((+new Date) * Math.random()).toString(36)}, delimiter = "\b" + r() + "-" + r() + "-" + r() + "\b", hold; stop = stop || this.length; hold = this.slice.apply(this, positiveT? [start, stop]: positiveS? [start, -target]: [start]) .join(delimiter); return this.splice.apply(this, positiveT? [target, stop - start, hold]: positiveS? [target, stop, hold]: [target, start, hold]), this.join(delimiter).split(delimiter).slice(zero, length); } }
Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | 45 | 12 | 32 | No | 32 | 9 |
Feature | Android webview | Chrome for Android | Edge mobile | Firefox for Android | Opera Android | iOS Safari | Samsung Internet |
---|---|---|---|---|---|---|---|
Basic support | Yes | Yes | Yes | 32 | Yes | 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/Array/copyWithin