UNPKG

@extra-array/copy

Version:

Copies part of array to another.

12 lines (7 loc) 179 B
const array = require("extra-array"); var x = [1, 2, 3, 4, 5]; var y = [10, 20, 30]; array.copy(x, y); array.copy(x, y, 1); array.copy(x, y, 1, 1); array.copy(x, y, 1, 1, 2);