String concatenation
To concatenate strings, simply use the +
operator.
To concatenate non-string values into string values, use the toString function.
Examples
"hello" + " " + "world" // "hello world"
"i am " + toString(100) + " years old" // "i am 100 years old"
Last updated