O método copyWithin()
copia uma sequência de elementos do array e insere no índice indicado por target
. A cópia é feita a partir dos índices indicados pelo segundo e pelo terceiro argumento start
e end
. O argumento end
é opcional e seu valor padrão é o comprimento do array.
Sintaxe
arr.copyWithin(target, start[, end = this.length])
Parâmetros
target
- Posição para a qual os elementos serão copiados.
start
- Índice inicial de onde se copiará os elementos.
end
- Opcional. Índice final de onde se copiará os elementos.
Descrição
Os argumentos target
, start
e end
são restritos a Number
e truncados para valores inteiros.
Se start
for negativo, ele é tratado como length+start
, onde length
é o comprimento do array. Se end
for negativo, ele é tratado como length+end
.
A função copyWithin
é intencionalmente genérica, não requer que seu valor this
seja um objeto Array
e, adicionalmente, copyWithin
é um método mutável, irá mudar o próprio objeto this
e retorná-lo, não apenas retornar uma cópia dele.
Exemplos
[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(0, -2, -1); // [4, 2, 3, 4, 5] [].copyWithin.call({length: 5, 3: 1}, 0, 3); // {0: 1, 3: 1, length: 5} // Typed Arrays do ES6 são subclasses de Array var i32a = new Int32Array([1, 2, 3, 4, 5]); i32a.copyWithin(0, 2); // Int32Array [3, 4, 5, 4, 5] // Em plataformas que ainda não são compatíveis com ES6: [].copyWithin.call(new Int32Array([1, 2, 3, 4, 5]), 0, 3, 4); // Int32Array [4, 2, 3, 4, 5]
Polyfill
if (!Array.prototype.copyWithin) { Array.prototype.copyWithin = function(target, start/*, end*/) { // Passos 1-2. if (this == null) { throw new TypeError('this é null ou não definido'); } var O = Object(this); // Passos 3-5. var len = O.length >>> 0; // Passos 6-8. var relativeTarget = target >> 0; var to = relativeTarget < 0 ? Math.max(len + relativeTarget, 0) : Math.min(relativeTarget, len); // Passos 9-11. var relativeStart = start >> 0; var from = relativeStart < 0 ? Math.max(len + relativeStart, 0) : Math.min(relativeStart, len); // Passos 12-14. var end = arguments[2]; var relativeEnd = end === undefined ? len : end >> 0; var final = relativeEnd < 0 ? Math.max(len + relativeEnd, 0) : Math.min(relativeEnd, len); // Passo 15. var count = Math.min(final - from, len - to); // Passos 16-17. var direction = 1; if (from < to && to < (from + count)) { direction = -1; from += count - 1; to += count - 1; } // Passo 18. while (count > 0) { if (from in O) { O[to] = O[from]; } else { delete O[to]; } from += direction; to += direction; count--; } // Passo 19. return O; }; }
Especificações
Especificação | Status | Comentário |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'Array.prototype.copyWithin' in that specification. |
Standard | Definição inicial. |
ECMAScript 2017 Draft (ECMA-262) The definition of 'Array.prototype.copyWithin' in that specification. |
Draft |
Compatibilidade de navegadores
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Suporte básico | 45 | 32 (32) | Não suportado | Não suportado | Não suportado |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Suporte básico | Não suportado | Não suportado | 32.0 (32) | Não suportado | Não suportado | Não suportado |