Skip to content

append

append(target, source)

Appends source or strings from source iterable to the end of target string.

ts
append("hello", " world"); // "hello world"
append("hello", [" ", "world"]); // "hello world"
ts
pipe("hello", append(" world")); // "hello world"
pipe("hello", append([" ", "world"])); // "hello world"