Skip to content

ReadOnlyObservableCollection.join

github-actions[bot] edited this page Dec 3, 2024 · 3 revisions

Aggregates the contained items into a String placing the provided separator between them.

public join(
  separator?: null | string
): string

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

Parameters

  • separator: null | string
    The separator used to insert between items when aggregating them into a String.

Returns: string

The aggregated items as a String.

See also

Clone this wiki locally