Help Compound Assignment With Augmented Addition

Tell us what’s happening:
Plz explain, I didn’t understand this part. TIA

Your code so far

var a = 3;
var b = 17;
var c = 12;

// Only modify code below this line

a = a + 12;
b = 9 + b;
c = c + 7;

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Linux; Android 6.0.1; SM-J700F Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.111 Mobile Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/compound-assignment-with-augmented-addition

You’re going to use the compound assignment operator for adding:

// this statement:
a = a + 12;

// is the same as this one; this is what you should use for this challenge:
a += 12;
3 Likes

Thank you, have help me solve it.