Methods
str-join(strings, glue) → {String}
Join/concatenate two or more strings with an optional glue string.
Parameters:
Name | Type | Description |
---|---|---|
strings |
String | List.<String> | the strings to join |
glue |
String | the string to put between joined strings |
Returns:
the joined string
- Type
- String
Example
str-join(('fo', 'ar'), 'ob')
=> 'foobar'