klyn.String.operator+=
method
public native operator+=( readonly second as String ) as String
Description

Appends another string to this string (in place).

Parameters
  • second String to append.
Returns

This string after concatenation.

Example
text = "K"
text += "lyn"
assert text == "Klyn"