Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

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"