Tell us what’s happening: The 4th line says “You should use the += operator for each variable”
a should equal 15
b should equal 26
c should equal 19
You should use the += operator for each variable
Do not modify the code above the line
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 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.189 Safari/537.36 Vivaldi/1.95.1077.60
.
Link to the challenge:
https://www.freecodecamp.org/challenges/compound-assignment-with-augmented-addition