I can’t seem to find anything on this on the docs.
How do I hinge strings together for text formatting?
Basically “My” + " " + “Name” = “My Name”
I can’t seem to find anything on this on the docs.
How do I hinge strings together for text formatting?
Basically “My” + " " + “Name” = “My Name”
That is in fact how you do it.
–Eric
lol.
string1 = string2 + string3;
or
string1 = string1 + string2;