The Wayback Machine - https://web.archive.org/web/20220601022140/https://www.geeksforgeeks.org/javascript-array-copywithin-method/amp/

JavaScript Array copyWithin() Method

Below is the example of the Array copyWithin() method. 




<script>
    // Input array
    var array = [1, 2, 3, 4, 5, 6, 7];
 
    // placing at index position 0 the element
    // between index 3 and 6
    document.write("Array " + array.copyWithin(0, 3, 6));
</script>

Output: 

Array 4, 5, 6, 4, 5, 6, 7

The arr.copyWithin() method copies part of an array to the same array and returns it, without modifying its size i.e, copies array element of an array within the same array.

Syntax: 

array.copyWithin(target, start, end)

Parameters: This method accepts three parameters as mentioned above and described below:  



Return value: It returns the modified array.

More example codes for the above method are as follows:

Program 1:  




<script>
    // Input array
    var array = [1, 2, 3, 4, 5, 6, 7];
 
    // Placing from index position 0 the
    // Element from index 4
    document.write("Array " + array.copyWithin(0, 4));
</script>

Output: 

Array 5, 6, 7, 4, 5, 6, 7

Program 2: 




<script>
    // Input array
    var array = [1, 2, 3, 4, 5, 6, 7];
 
    // Placing from index position 3
    // The element from index 0
    document.write("Array " + array.copyWithin(3));
</script>

Output: 

Array 1, 2, 3, 1, 2, 3, 4

Application: Whenever we need to copy the content of any array to the same array that time we use arr.copyWithin() element in JavaScript.




<script>
    // Input array
    var array = [1, 2, 3, 4, 5, 6, 7];
 
    // Placing at index position 0 the
    // Element between index 4 and 5
    document.write("Array " + array.copyWithin(0, 4, 5));
</script>

Output: 

Array 5, 2, 3, 4, 5, 6, 7

Supported Browsers: The browsers supported by JavaScript Array copyWithin() method are listed below: 

 




Article Tags :