Tell us what’s happening:
You should use the +=
operator for each variable.
I am not passing the aforementioned part of the code
Your code so far
var a = 3;
var b = 17;
var c = 12;
// Only change code below this line
var a += 12;
var b += 9;
var c += 7;
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1.2 Safari/605.1.15
.
Challenge: Compound Assignment With Augmented Addition
Link to the challenge: