Tell us what’s happening:
Describe your issue in detail here.
Your code so far
Convert the assignments for a , b , and c to use the += operator.
Please this was what i was asked to do but i don’t know why i wasn’t able to pass this level.
Please someone should help me out.
let a = 3;
let b = 17;
let c = 12;
// Only change code below this line
a += 12;
9 += b;
c += 7;
Your browser information:
User Agent is: Mozilla/5.0 (Linux; Android 13; SM-A047F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Mobile Safari/537.36
Challenge: Basic JavaScript - Compound Assignment With Augmented Addition
Tell us what’s happening:
Describe your issue in detail here.
This was the instruction below.
Convert the assignments for a , b , and c to use the += operator.
But i did exactly what i was asked to do but i don’t know why i wasn’t able to pass and it was saying i should use the =+ signs in each variable when i already did. Your code so far
let a = 3;
let b = 17;
let 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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36
Challenge: Basic JavaScript - Compound Assignment With Augmented Addition