Skip to content

ReadOnlyObservableCollection.push

github-actions[bot] edited this page Feb 4, 2025 · 4 revisions

Appends new elements to the end of the collection, and returns the new length of the collection.

protected push(
  ...items: readonly TItem[]
): number

Source reference: src/collections/observableCollections/ReadOnlyObservableCollection.ts:723.

Parameters

  • items (rest): readonly TItem[]
    New elements to add at the end of the collection.

Returns: number

The new length of the collection.

See also

Clone this wiki locally