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
Revision as of 15:52, 21 October 2025 by Groundhog (talk | contribs) (Updated via bot)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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