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 trial

JavaScript JavaScript Loops, Arrays and Objects Simplify Repetitive Tasks with Loops What are Loops?

Thanitsak Leuangsupornpong
Thanitsak Leuangsupornpong
7,490 Points

Not understand about add the number?

Why don't we use + to add the number to the counter,but teacher use +=. I don't understand why use"+=".

1 Answer

Iain Diamond
Iain Diamond
29,379 Points

It's often thought that programmers are lazy. So having to type

var long_descriptive_variable_name = long_descriptive_variable_name + 1;

is really too much work. To make our lives easier, JavaScript (and some other languages) allows the use of the short-hand syntax:

var long_descriptive_variable_name +=  1;

to do the same thing, but with less typing. :)

Hope this helps. iain