Skip to main content

copyWithin()

语法

copyWithin(target: number, start: number, end?: number): this;

在字符串中截取 [start, end) 个子元素,并覆盖到 target 的位置,该方法不会改变原数组。

示例