Methods
(static) concat(…array) → {array}
- Source:
- Since:
- 0.1.0
- See:
Return an array by concatenating the provided arrays
Example
> concat([0, 1, 2], [3, 4], [5, 6])
[0, 1, 2, 3, 4, 5, 6]
Parameters:
Name | Type | Attributes | Description |
---|---|---|---|
array |
array |
<repeatable> |
Returns:
- Type
- array