JavaScript 数组 copyWithin()
示例
复制到索引 2,从索引 0 开始的所有元素
const fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.copyWithin(2, 0);
亲自尝试 »
复制到索引 2,从索引 0 到 2 的元素
const fruits = ["Banana", "Orange", "Apple", "Mango", "Kiwi"];
fruits.copyWithin(2, 0, 2);
亲自尝试 »
描述
The copyWithin()
方法将数组元素复制到数组中的另一个位置。
The copyWithin()
方法会覆盖现有值。
The copyWithin()
方法不会向数组添加项目。
语法
array.copyWithin(target, start, end)
参数
参数 | 描述 |
target | 必需的。 要复制元素到的索引(位置)。 |
start | 可选的。 起始索引(位置)。默认值为 0。 |
end | 可选的。 结束索引(位置)。默认值为数组长度。 |
返回值
类型 | 描述 |
数组 | 已更改的数组。 |
浏览器支持
copyWithin()
是 ECMAScript6 (ES6) 的一个特性。
ES6 (JavaScript 2015) 自 2017 年 6 月起在所有现代浏览器中得到支持
Chrome 51 | Edge 15 | Firefox 54 | Safari 10 | Opera 38 |
2016 年 5 月 | 2017 年 4 月 | 2017 年 6 月 | 2016 年 9 月 | 2016 年 6 月 |
copyWithin()
在 Internet Explorer 中不受支持。