Combines several arrays into one.
function combine<T>(...arrs: T[][]): T[]
// Example:
combine([1, 2, 3], [4, 5], [6, 7, 8]) //=> [1, 2, 3, 4, 5, 6, 7, 8]
Combines several arrays into one.
function combine<T>(...arrs: T[][]): T[]
// Example:
combine([1, 2, 3], [4, 5], [6, 7, 8]) //=> [1, 2, 3, 4, 5, 6, 7, 8]