Array.classPrototype.insertFrom
- Instance of
- Parameters
-
n /*Number*/, array /*Array*/, [position = 0 /*Number*/], [length = array.length() /*Number*/]
- Return value
-
this
Description
Inserts to array new elements before n-th element from subarray of second argument starting at given position and of given length.
Example
let arr = [36.6, "Harry", true];
arr.insertFrom(3, [1, 2, 3, 4, 5, 6], 2, 4);
console.write(arr[3], arr[4], arr[5], arr[6]);
Expected output
3456