TypeString.append
append($otherTypeString) -> self
Description
Append another TypeString to the current TypeString of the same type.
The result will be a combined TypeString.
$links = html'<a href="/">Home</a>' $links.append(html'<a href="/about">About</a>') //= <a href="/">Home</a><a href="/about">About</a>