Returns a new string with val appended to the end of the current string.
val
val — value to append (will be converted to string if not already).
str = "hello ".append("world") // "hello world"
Last updated 3 months ago