klyn.collections.ArraySync.join
method
public native join(separator as String) as String
Description

Joins elements into a string using the separator.

import klyn.collections

values = fs:[10, 20, 30]
print(values.join(" / "))   # 10 / 20 / 30
Parameters
  • separator The string inserted between items.
Returns

Joined textual representation.