Inserts an array into another array, returns the result;
assert([0, 2].insertElement([1, 1], 1) == [0, 1, 1, 2]); assert([2].insertElement([0, 1], 0) == [0, 1, 2]);
See Implementation
Inserts an array into another array, returns the result;