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

Concatenation: Difference between revisions

From Groundhog Learning
Updated via bot
 
(No difference)

Latest revision as of 15:52, 21 October 2025

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