Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialPeter Buckwalter
6,846 PointsAdd to the beginning of a variable.
How do you add a string to the beginning of a variable?
"This is " += myvar.
In the video you only demonstrate adding the end.
myvar += " abc"
I noticed it doesn't work in reverse.
1 Answer
behar
10,799 PointsmyVar = "cd" myVar = "ab" + myVar
Peter Buckwalter
6,846 PointsP.s. I am looking for an answer that uses abrieviated asignment operators "+=" etc.
behar
10,799 PointsHey Peter! There are tons of ways you could do it, but none using the += operator. As a quick google serach would show:
Peter Buckwalter
6,846 PointsPeter Buckwalter
6,846 PointsThank you!