IReadOnlyObservableCollection.concat - Andrei15193/react-model-view-viewmodel GitHub Wiki
API / IReadOnlyObservableCollection<TItem> / concat method
Merges the current collection with the given Array and returns a new JavaScript Array.
concat(
...items: readonly (TItem | readonly TItem[])[]
): TItem[]
Source reference: src/collections/observableCollections/IReadOnlyObservableCollection.ts:173
.
Returns a new Array containing the items of this collection followed by the items in the provided Array.