当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript Array copyWithin()用法及代码示例


下面是Array cocopyWithinncat()方法的示例。

  • 例:
    <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>
  • 输出:
    Array 4, 5, 6, 4, 5, 6, 7

arr.copyWithin()方法将数组的一部分复制到相同的数组并返回它,而无需修改其大小,即在同一数组内复制数组的数组元素。

用法:

array.copyWithin(target, start, end)

参数:此方法接受上述和以下所述的三个参数:

  • target:将元素复制到的索引位置(必需)。
  • start:它是可选的。从其开始复制元素的索引位置(默认为0)。
  • end:它是可选的。停止从中复制元素的索引位置(默认为array.length)。

返回值:它返回修改后的数组。



上述方法的更多示例代码如下:

程序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>

输出:

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

程序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>

输出:

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

应用程序:每当我们需要将任何数组的内容复制到同一数组时,我们都会在JavaScript中使用arr.copyWithin()元素。

<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>

输出:

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

支持的浏览器:下面列出了JavaScript数组copyWithin()方法支持的浏览器:

  • 谷歌浏览器45.0
  • Microsoft Edge 12.0
  • Mozilla Firefox 32.0
  • Opera 32.0
  • Safari 9




相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 JavaScript Array copyWithin() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。