copyWithin方法怎么使用
程序员文章站
2022-04-16 20:18:11
...
copyWithin()方法将数组的一部分复制到同一个数组并返回它,而不修改其大小,即复制同一数组中数组的数组元素。下面我们就来看一下copyWithin方法的具体使用方法。
我们先来看一下copyWithin()的基本语法
array.copyWithin(target,start,end)
target:要复制元素的索引位置(必需)。
start:这是可选的。指数位置为开始复制的元素(默认为0)。
end:这是可选的。指数位置为停止复制元素(默认为array.length)。
下面我们来看copyWithin()具体的示例
代码如下
<!DOCTYPE html> <html> <head> <title></title> </head> <body> <script type="text/javascript"> var array = [ 1, 2, 3, 4, 5, 6, 7 ]; console.log(array.copyWithin(0, 3, 6)); </script> </body> </html>
运行结果如下
Array [4, 5, 6, 4, 5, 6, 7]
本篇文章到这里就已经全部结束了,更多精彩内容大家可以关注的其他相关栏目教程!!!
以上就是copyWithin方法怎么使用的详细内容,更多请关注其它相关文章!