Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Concatenation

From Groundhog Learning

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

References