* See :js:meth:`Array.join`. The :js:meth:`Array.join` method creates and * returns a new string by concatenating all of the elements in the * :py:class:`~collections.abc.Sequence`. * * @param separator A string to separate each pair of adjacent elements of the * Sequence. * * @
(separator?: string)
| 1645 | * @returns A string with all Sequence elements joined. |
| 1646 | */ |
| 1647 | join(separator?: string) { |
| 1648 | return Array.prototype.join.call(this, separator); |
| 1649 | } |
| 1650 | /** |
| 1651 | * See :js:meth:`Array.slice`. The :js:meth:`Array.slice` method returns a |
| 1652 | * shallow copy of a portion of a :py:class:`~collections.abc.Sequence` into a |