The process of joining two or more strings together to form a single string.
Details
If you join a string with another data type, like an integer, most languages will first convert the other value into a string.
🤖 Pseudocode
"Hello " + "World" # "Hello World" "Score: " + 10 # "Score: 10"
Related Actions
- Used in: Print a Variable