public native operator+=( readonly second as String ) as String
Appends another string to this string (in place).
This string after concatenation.
text = "K" text += "lyn" assert text == "Klyn"