From 04e77419cc8a4bf903c60b9d0cfb304cb6e5c966 Mon Sep 17 00:00:00 2001 From: Valentin Syrovatskiy Date: Sun, 6 Jun 2021 12:32:49 +0300 Subject: [PATCH] doc: document array.join method (#10360) --- doc/docs.md | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/docs.md b/doc/docs.md index 88dbd5d5b8..68f2596970 100644 --- a/doc/docs.md +++ b/doc/docs.md @@ -790,6 +790,7 @@ There are further built in methods for arrays: * `a.delete_last()` remove last element from array * `b := a.reverse()` make `b` contain the elements of `a` in reversed order * `a.reverse_in_place()` reverse the order of elements in `a` +* `a.join(joiner)` concatenate array of strings into a string using `joiner` string as a separator #### Sorting Arrays