Basic JavaScript - Compound Assignment With Augmented Addition

I changed the code above the comment and now I can’t complete this level. What can I do to solve this?

let a = 15;
let b = 26;
let c = 19;
// Only change code below this line
a += 0;
b += 0;
c += 0;

let a = 15;
let b = 26;
let c = 19;
// Only change code below this line
a += 0;
b += 0;
c += 0;

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 Edg/121.0.0.0

Challenge Information:

Basic JavaScript - Compound Assignment With Augmented Addition

1 Like

:balloon:Hello @018MK! Welcome to the forum!
Just click the “Reset this lesson” button and start the challenge again.
image

Does this help?
Keep up the good progress!

Happy Coding! :slightly_smiling_face:

2 Likes

Welcome to the forum @018MK

As @ios-man suggested please reset the lesson

You are meant to only change the variables below line 5.
Read the instructions again to understand what augmented addition is doing.

Happy coding.

2 Likes

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.