Skip to content

FormCollection.push

github-actions[bot] edited this page Nov 17, 2024 · 2 revisions

This method overrides ReadOnlyFormCollection.push.

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

public push(
  ...items: readonly TForm[]
): number

Source reference: src/forms/FormCollection.ts:45.

Parameters

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

Returns: number

The new length of the collection.

See also

Clone this wiki locally