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