kotlin.text.append

append

fun <T : Appendable> T.append(vararg value: CharSequence?): T

Appends all arguments to the given Appendable.

fun StringBuilder.append(
    vararg value: String?
): StringBuilder

Platform and version requirements: JS

fun StringBuilder.append(vararg value: Any?): StringBuilder

Platform and version requirements: JS

Appends all arguments to the given Str