Tell us what’s happening:
How do i convert the assignments for a
, b
, and c
to use the +=
operator for the code below?
Your code so far
var a = 3;
var b = 17;
var c = 12;
// Only change code below this line
a = a + 12;
b = 9 + b;
c = c + 7;
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36
.
Challenge: Compound Assignment With Augmented Addition
Link to the challenge: