References

Array.copyWithin()

Leírás

Ezt az objektumot adja vissza a tömb kezdő és záró szakaszának másolása után ugyanaz a tömbre a pozíció célhelyétől kezdve.

Szintaxis

copyWithin(target, start)
copyWithin(target, start, end)

Példa

const array1 = ['a', 'b', 'c', 'd', 'e']
 
// Copy to index 0 the element at index 3
console.log(array1.copyWithin(0, 3, 4))
// Expected output: Array ["d", "b", "c", "d", "e"]
 
// Copy to index 1 all elements from index 3 to the end
console.log(array1.copyWithin(1, 3))
// Expected output: Array ["d", "d", "e", "d", "e"]
in this article
back to top