The .concat() function is used to append collections.

The .concat() can handle 1 to many arguments. Each collection will be appended to each other.

union(collection, collection , collection, ...)
type Collection<T> = T[];
concat<T>(collection: Collection<T>, ...collections: Collection<T>[]): jinqJs;