The original array
The array to concatenate
A new array with elementN array inserted at the beginning of the original array.
<pre>
const original = ["a", "b"];
const result = ["a", "b", "c", "d"];
expect(concat(original, ["c", "d"])).to.eql(result);
</pre>
Generated using TypeDoc
Places the elements in the array argument first in the original array and returns a new array.