public native join(separator as String) as String
Joins elements into a string using the separator.
import klyn.collections
values = fs:[10, 20, 30]
print(values.join(" / ")) # 10 / 20 / 30| Parameter | Description |
|---|---|
separator | The string inserted between items. |
Joined textual representation.