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 trialtreehouser9
824 PointsConsider the following code: let greeting = 'Hi'; greeting = greeting + ', Treehouse students!';
Consider the following code:
let greeting = 'Hi'; greeting = greeting + ', Treehouse students!'; Complete this code by adding the operator that produces the same result as the above code:
let greeting = 'Hi'; greeting___', Treehouse students!';
I can't figure out what to put in the space after the greeting on the last line. Help!
1 Answer
Ryan Groom
18,674 Pointstreehouser9 the operator you're looking for is "+=" because it will take what is on the right-hand side of the statement and add it to the left-hand side of the statement and store the result within the variable on the left-hand side of the statement.
Feel free to reach out to me if you have any questions.